﻿/* Base reset */
:root {
  color-scheme: light;
}
*
{
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: #ffffff;
  color: #1f1f1f;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #db1616;
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: underline;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Layout helpers */
.container,
.content-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section-block {
  margin-bottom: 2.5rem;
}

/* Header */
 .pak-game-header {
  background: #db1616;
  position: sticky;
            top: 0;
  z-index: 20;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}
        .pak-game-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem 1.25rem;
}
.pak-game-logo {
  display: inline-flex;
  align-items: center;
}
.logo-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
}
.pak-game-actions {
            display: flex;
            align-items: center;
  gap: 0.75rem;
        }
        .pak-game-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.60rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  background: #ffffff;
  color: #db1616;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pak-game-btn:hover,
.pak-game-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}
.pak-game-btn-secondary {
  background: #db1616;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.65);
}

/* Hero sections */
.index-main {
  background: #050505;
  color: #ffffff;
  padding: 4rem 0 3rem;
}
.index-main h1 {
  text-align: center;
  font-size: 2.4rem;
  margin: 0 0 1.5rem;
}
.main-content {
  padding: 4rem 0 2.5rem;
  background: #ffffff;
  color: #1f1f1f;
}
.welcome-text {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 0.75rem;
}
.description {
  max-width: 720px;
  margin: 0 auto;
  color: #4a4a4a;
  text-align: center;
}

/* Download card */
 .download-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.75rem 2rem 2.25rem;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  margin: 0 auto 2.5rem;
  max-width: 960px;
}
        .gift-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
  background: #1e3a5f;
  color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
  margin: -3.2rem auto 0.75rem;
  font-size: 1.3rem;
}
        .card-title {
  font-size: 1.65rem;
  text-align: center;
  margin: 0 0 0.5rem;
  color: #1b1b1b;
}
        .card-subtitle {
  max-width: 520px;
  margin: 0 auto 1.5rem;
  text-align: center;
  color: #575757;
}
        .download-buttonss {
            display: flex;
            flex-direction: column;
            align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.download-btn-btn {
  display: inline-flex;
            align-items: center;
  gap: 0.5rem;
  background: #db1616;
  color: #ffffff;
  padding: 0.78rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.download-btn-btn:hover,
.download-btn-btn:focus-visible {
  transform: translateY(-2px);
}
.app-info {
  display: flex;
            justify-content: center;
            align-items: center;
  gap: 1.15rem;
  color: #5c5c5c;
            font-size: 0.95rem;
}
.star-rating {
  display: inline-flex;
  gap: 0.35rem;
  color: #ffc400;
}
.star::before {
  content: "★";
}

/* Content sections */
.content-section {
  padding: 3.5rem 0;
}
.section-title {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 1rem;
}
.intro-text,
.section-text {
  max-width: 960px;
  margin: 0.75rem auto;
  color: #454545;
}

/* Generic panel lists */
.bullet-list,
.step-list,
.process-list,
.download-list {
  list-style: none;
  margin: 1.5rem auto;
  padding: 0;
  max-width: 960px;
}
.bullet-list li,
.step-list li,
.process-list li,
.download-list li {
  position: relative;
  background: #f7f7fa;
  border-radius: 14px;
  margin-bottom: 0.9rem;
  padding: 0.95rem 1.2rem 0.95rem 3.1rem;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}
.bullet-list li::before,
.process-list li::before,
.download-list li::before {
  content: "•";
  position: absolute;
  left: 1.15rem;
  top: 1.05rem;
  font-size: 1.35rem;
  color: #db1616;
}
.step-list {
  counter-reset: step;
}
.step-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: #db1616;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Lottery & game sections */
.lottery-list,
.game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}
.lottery-item,
.game-list li {
  background: #f5f7fb;
  border-radius: 14px;
  padding: 1.1rem 1rem;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: #1f3765;
}
.lottery-number {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #db1616;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Pros & cons */
.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 2.5rem auto;
}
.pros,
.cons {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}
.pros h3,
.cons h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: #db1616;
}
.pros .bullet-list li::before {
  color: #2b9e46;
}
.cons .bullet-list li::before {
  color: #d53c3c;
}

/* Table of contents */
.table-of-contents {
    max-width: 960px;
    margin: 0 auto;
  background: #f7f7fb;
  border-radius: 16px;
  padding: 1.1rem 1.35rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}
.table-of-contents summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
  .toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}
  .toc-list a {
  display: block;
  padding: 0.65rem 0.75rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(219, 22, 22, 0.15);
}

/* Bonus details */
  .bonus-details {
  background: #f7fafc;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  max-width: 960px;
  margin: 1.5rem auto;
}

/* FAQ */
    .faq-drawer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
    }
    .faq-drawer__title {
      cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
      display: block;
}
    .faq-drawer__content-wrapper {
      max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
    }
    .faq-drawer__trigger:checked + .faq-drawer__title + .faq-drawer__content-wrapper {
  max-height: 240px;
}

/* Download page specific */
.download-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.12);
  margin: 3rem auto;
}
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.steps-slide {
  display: contents;
}
.step-item {
  text-align: center;
        }
.phone-container {
    width: 200px;
    height: 400px;
  margin: 0 auto 1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #f1f4f8 0%, #dfe5ee 100%);
  padding: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-mockup {
  width: 90%;
  height: 90%;
  border-radius: 18px;
  border: 2px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
    overflow: hidden;
  display: flex;
}
.screen {
    width: 100%;
  padding: 0.75rem;
  background: #f8fafc;
  position: relative;
}
.step-description {
  font-weight: 600;
  color: #1f3765;
}

/* Back button */
.back-button-section {
  padding: 1.25rem 0;
  background: #f5f5f7;
}
.back-button-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #db1616;
  color: #ffffff;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
}

/* Footer */
.footer {
  background: #111315;
  color: #c7cbd1;
  padding: 2.75rem 0 2rem;
}
.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo-img {
  width: 60px;
  height: 60px;
    border-radius: 12px;
}
.footer-brand {
  margin: 0;
  font-size: 1.8rem;
  color: #ffffff;
}
.footer-brand span {
  color: #db1616;
}
.footer-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
}
.footer-links-section,
.footer-social-section {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-link {
  color: inherit;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  margin-bottom: 1.25rem;
}
.footer-text {
  text-align: center;
  margin: 0;
  font-size: 0.95rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .pak-game-container {
    flex-direction: column;
  }
  .pak-game-actions {
    width: 100%;
    justify-content: center;
  }
  .pak-game-btn {
    flex: 1 1 auto;
    justify-content: center;
  }
  .index-main,
    .main-content {
    padding: 3rem 0 2rem;
  }
  .download-card {
    padding: 2.2rem 1.35rem;
  }
  .steps-wrapper {
    grid-template-columns: 1fr;
  }
    .phone-container {
    width: 180px;
    height: 360px;
  }
}

@media (max-width: 520px) {
  .pak-game-container {
    padding: 0.75rem;
  }
  .logo-img {
    width: 56px;
    height: 56px;
  }
  .download-card {
    margin: 0 0 2rem;
  }
  .table-of-contents summary {
    font-size: 1rem;
  }
  .toc-list {
    grid-template-columns: 1fr;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
}

.menu-container {
  background: linear-gradient(145deg, #07111f, #101b2d);
  color: #ffffff;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 22px 46px rgba(8, 15, 30, 0.4);
  display: grid;
  gap: 1rem;
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.menu-icon {
  font-size: 1.25rem;
}
.menu-text {
  flex: 1;
  font-weight: 600;
}
.menu-arrow {
  color: rgba(255, 255, 255, 0.65);
}

.register-banner {
  margin: 2.5rem auto;
  text-align: center;
}
.register-image-styled {
  max-width: 520px;
  margin: 0 auto;
  border-radius: 22px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.bonus-details p {
  margin: 0 0 0.75rem;
}

.faq-drawer__trigger {
  display: none;
}
.faq-drawer__content {
  padding-top: 0.75rem;
  color: #565a63;
}


