    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --navy:      #080e20;
      --navy-mid:  #0d1533;
      --blue:      #0a1f6e;
      --gold:      #f5a623;
      --gold-dark: #c47d0e;
      --red:       #e63946;
      --red-dark:  #b02030;
      --white:     #ffffff;
      --silver:    #c8d4e8;
      --glow-gold: rgba(245, 166, 35, 0.45);
      --glow-red:  rgba(230, 57, 70, 0.45);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      background: var(--navy);
      color: var(--white);
      min-height: 100vh;
      overflow-x: hidden;
      font-size: 16px;
      line-height: 1.5;
    }
    h2, h3, p{
        margin: 20px 0;
    }
    h3{
        text-decoration: underline;
    }
    /* ─── HEADER ─────────────────────────────────────────── */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      height: 64px;
      background: linear-gradient(180deg, rgba(8,14,32,0.98) 0%, rgba(8,14,32,0.85) 100%);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(245, 166, 35, 0.15);
    }

    /* Logo */
    .header-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-wings {
      display: flex;
      flex-direction: column;
      align-items: center;
      line-height: 1;
    }
    .logo-wings img{
        width: 80px;
    }

    .logo-avia {
      font-size: 18px;
      font-weight: 900;
      letter-spacing: 3px;
      color: var(--gold);
      text-transform: uppercase;
      text-shadow: 0 0 16px var(--glow-gold);
    }

    .logo-masters {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 5px;
      color: var(--silver);
      text-transform: uppercase;
    }

    .logo-num {
      display: inline-block;
      background: var(--gold);
      color: var(--navy);
      font-size: 11px;
      font-weight: 900;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      text-align: center;
      line-height: 18px;
      margin-left: 4px;
      vertical-align: middle;
    }

    /* Nav */
    .header-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .header-nav a {
      color: var(--silver);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.5px;
      padding: 6px 14px;
      border-radius: 6px;
      transition: color 0.2s, background 0.2s;
    }

    .header-nav a:hover {
      color: var(--white);
      background: rgba(245, 166, 35, 0.12);
    }

    .header-nav .nav-divider {
      width: 1px;
      height: 16px;
      background: rgba(200, 212, 232, 0.25);
    }

    /* PP Button */
    .btn-pp {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 20px;
      background: linear-gradient(135deg, #f5a623 0%, #f7c05a 50%, #e8920f 100%);
      color: #1a0e00;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      box-shadow: 0 0 18px var(--glow-gold), 0 2px 8px rgba(0,0,0,0.4);
      transition: transform 0.15s, box-shadow 0.15s;
      flex-shrink: 0;
      white-space: nowrap;
    }

    .btn-pp:hover {
      transform: translateY(-2px) scale(1.03);
      box-shadow: 0 0 28px var(--glow-gold), 0 4px 16px rgba(0,0,0,0.5);
    }

    .btn-pp:active {
      transform: scale(0.98);
    }

    /* ─── HERO ───────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 65vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      filter: brightness(50%) blur(6px);
    }

    /* Dark gradient overlay */
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg,
          rgba(8,14,32,0.65) 0%,
          rgba(8,14,32,0.30) 35%,
          rgba(8,14,32,0.50) 65%,
          rgba(8,14,32,0.88) 100%
        );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 80px 20px 40px;
      max-width: 700px;
      width: 100%;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(245, 166, 35, 0.15);
      border: 1px solid rgba(245, 166, 35, 0.4);
      color: var(--gold);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 20px;
    }

    .hero-title {
      font-size: clamp(36px, 9vw, 86px);
      font-weight: 900;
      line-height: 0.95;
      text-transform: uppercase;
      letter-spacing: -1px;
      text-shadow: 0 4px 24px rgba(0,0,0,0.7);
      margin-bottom: 20px;
    }

    .hero-title .t-avia {
      display: block;
      color: var(--white);
    }

    .hero-title .t-masters {
      display: block;
      color: var(--gold);
      text-shadow: 0 0 30px var(--glow-gold), 0 4px 24px rgba(0,0,0,0.7);
    }

    .hero-title .t-2 {
      display: inline-block;
      background: var(--gold);
      color: var(--navy);
      font-size: 0.55em;
      padding: 2px 14px;
      border-radius: 6px;
      vertical-align: middle;
      margin-left: 10px;
      line-height: 1.2;
    }

    .hero-sub {
      font-size: clamp(14px, 2.5vw, 17px);
      color: var(--silver);
      margin: 16px auto 36px;
      max-width: 440px;
      line-height: 1.6;
    }

    /* Hero CTA buttons */
    .hero-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-hero-pp {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 36px;
    /* background: linear-gradient(135deg, rgb(245, 166, 35) 0%, rgb(247, 192, 90) 45%, #e8920f 100%); */
      color: #ffffff;
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 10px;
      box-shadow: 0 0 30px var(--glow-gold), 0 4px 20px rgba(0,0,0,0.5);
      transition: transform 0.15s, box-shadow 0.15s;
    }

    .btn-hero-pp:hover {
      transform: translateY(-3px) scale(1.04);
      box-shadow: 0 0 48px var(--glow-gold), 0 8px 30px rgba(0,0,0,0.6);
    }

    .btn-hero-pp:active {
      transform: scale(0.97);
    }

    .btn-hero-play {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 36px;
      background: linear-gradient(135deg, #ab0310 0%, #f70013 45%, #a8000f 100%);
      color: var(--white);
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 10px;
      box-shadow: 0 0 30px var(--glow-red), 0 4px 20px rgba(0,0,0,0.5);
      transition: transform 0.15s, box-shadow 0.15s;
    }

    .btn-hero-play:hover {
      transform: translateY(-3px) scale(1.04);
      box-shadow: 0 0 48px var(--glow-red), 0 8px 30px rgba(0,0,0,0.6);
    }

    .btn-hero-play:active {
      transform: scale(0.97);
    }

    .btn-icon {
      font-size: 18px;
    }

    /* Scroll hint */
    .scroll-hint {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(200, 212, 232, 0.5);
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      animation: bounce 2s infinite;
    }

    .scroll-hint svg {
      width: 20px;
      opacity: 0.5;
    }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(6px); }
    }

    /* ─── FEATURES SECTION ───────────────────────────────── */
    .features {
      padding: 20px;
      max-width: 1100px;
      margin: 35px auto;
    }

    .section-title {
      font-size: clamp(20px, 4vw, 25px);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .section-title span {
      color: var(--gold);
    }

    .section-sub {
      text-align: center;
      color: var(--silver);
      font-size: 15px;
      margin-bottom: 48px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }

    .feature-card {
      background: linear-gradient(135deg, rgba(13,21,51,0.9) 0%, rgba(10,31,110,0.3) 100%);
      border: 1px solid rgba(245, 166, 35, 0.12);
      border-radius: 14px;
      padding: 28px 24px;
      transition: border-color 0.2s, transform 0.2s;
    }

    .feature-card:hover {
      border-color: rgba(245, 166, 35, 0.35);
      transform: translateY(-4px);
    }

    .feature-icon {
      font-size: 36px;
      margin-bottom: 14px;
    }

    .feature-card h3 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--gold);
    }

    .feature-card p {
      font-size: 14px;
      color: var(--silver);
      line-height: 1.6;
    }

    /* ─── GALLERY SECTION ────────────────────────────────── */
    .gallery {
      padding: 0 24px 80px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 16px;
    }

    .gallery-item {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(245, 166, 35, 0.1);
      transition: transform 0.2s, border-color 0.2s;
    }

    .gallery-item:hover {
      transform: scale(1.02);
      border-color: rgba(245, 166, 35, 0.35);
    }

    .gallery-item img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ─── CTA SECTION ────────────────────────────────────── */
    .cta-section {
      padding: 80px 24px;
      text-align: center;
      background: linear-gradient(180deg, transparent 0%, rgba(10,31,110,0.2) 50%, transparent 100%);
    }

    .cta-section h2 {
      font-size: clamp(24px, 5vw, 42px);
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .cta-section h2 span {
      color: var(--gold);
    }

    .cta-section p {
      color: var(--silver);
      font-size: 15px;
      margin-bottom: 36px;
    }

    /* ─── FOOTER ─────────────────────────────────────────── */
    .footer {
      border-top: 1px solid rgba(200, 212, 232, 0.08);
      padding: 32px 24px;
      text-align: center;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }

    .footer-links a {
      color: var(--silver);
      text-decoration: none;
      font-size: 13px;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .footer-copy {
      color: rgba(200, 212, 232, 0.35);
      font-size: 12px;
    }

    /* ─── MOBILE HEADER ADJUSTMENTS ─────────────────────── */
    @media (max-width: 640px) {
      .header {
        padding: 0 16px;
        height: 56px;
      }

      .header-nav {
        display: none;
      }

      .logo-avia {
        font-size: 15px;
      }

      .logo-masters {
        font-size: 11px;
        letter-spacing: 3px;
      }

      .btn-pp {
        padding: 8px 14px;
        font-size: 13px;
      }

      .hero-content {
        padding-top: 70px;
      }

      .btn-hero-pp,
      .btn-hero-play {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
      }

      .hero-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 0 8px;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        letter-spacing: -0.5px;
      }
    }
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 20px 0;
  /* opacity: 0.7; */
}

/* ─── TABLE DOUBLE ───────────────────────────────────── */
.table-double {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(245, 166, 35, 0.2);
  margin: 24px 0;
  font-size: 15px;
}

.table-double th,
.table-double td {
  padding: 13px 20px;
  text-align: left;
  vertical-align: middle;
}

/* Header row */
.table-double thead tr,
.table-double tr:first-child th {
  background: linear-gradient(90deg, rgba(245, 166, 35, 0.18) 0%, rgba(245, 166, 35, 0.08) 100%);
}

.table-double th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(245, 166, 35, 0.3);
}

/* Body rows */
.table-double tbody tr,
.table-double tr:not(:first-child) {
  background: transparent;
  transition: background 0.15s;
}

.table-double tbody tr:nth-child(odd),
.table-double tr:nth-child(even) {
  background: rgba(13, 21, 51, 0.6);
}

.table-double tbody tr:nth-child(even),
.table-double tr:nth-child(odd):not(:first-child) {
  background: rgba(8, 14, 32, 0.5);
}

.table-double tbody tr:hover,
.table-double tr:not(:first-child):hover {
  background: rgba(245, 166, 35, 0.07);
}

.table-double td {
  color: var(--silver);
  border-bottom: 1px solid rgba(200, 212, 232, 0.06);
}

/* Left column (param name) */
.table-double td:first-child,
.table-double th:first-child {
  font-weight: 600;
  color: var(--white);
  border-right: 1px solid rgba(245, 166, 35, 0.1);
  width: 50%;
}

/* Value column */
.table-double td:last-child {
  color: var(--gold);
  font-weight: 600;
}

/* Last row — no bottom border */
.table-double tr:last-child td {
  border-bottom: none;
}

/* ─── SECTION LIST ───────────────────────────────────── */
.section-list {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-list li {
  position: relative;
  padding: 12px 18px 12px 44px;
  background: linear-gradient(90deg, rgba(13, 21, 51, 0.7) 0%, rgba(10, 31, 110, 0.15) 100%);
  border: 1px solid rgba(245, 166, 35, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  color: var(--silver);
  font-size: 15px;
  line-height: 1.55;
  transition: border-color 0.2s, background 0.2s;
}

.section-list li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--glow-gold);
  flex-shrink: 0;
}

.section-list li:hover {
  border-color: rgba(245, 166, 35, 0.35);
  border-left-color: var(--gold);
  background: linear-gradient(90deg, rgba(245, 166, 35, 0.07) 0%, rgba(10, 31, 110, 0.2) 100%);
}

.section-list li strong {
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 480px) {
  .section-list li {
    font-size: 14px;
    padding: 11px 14px 11px 38px;
  }
}

/* Mobile scroll wrapper */
@media (max-width: 480px) {
  .table-double {
    font-size: 13px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-double th,
  .table-double td {
    padding: 11px 14px;
    white-space: nowrap;
  }
}


.faq {
  margin: 20px 0;
  position: relative;
}

.faq-item {
  /* background: linear-gradient(180deg, #1b2553 0%, #0f1739 100%); */
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}

.faq-item h3,
.faq-item h4 {
  font-size: clamp(18px, 2.6vw, 22px);
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--muted);
  line-height: 1.6;
}


/* ─── BURGER BUTTON ──────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.burger:hover {
  background: rgba(245, 166, 35, 0.18);
  border-color: rgba(245, 166, 35, 0.5);
}

/* Animated X when open */
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV DRAWER ──────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 200;
  width: 260px;
  background: linear-gradient(160deg, #0d1533 0%, #080e20 100%);
  border-right: 1px solid rgba(245, 166, 35, 0.15);
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.6);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 4px;
}

.mobile-nav-inner a {
  color: var(--silver);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  border-left: 2px solid transparent;
}

.mobile-nav-inner a:hover {
  color: var(--white);
  background: rgba(245, 166, 35, 0.08);
  border-left-color: var(--gold);
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 8px;
}

.logo-mob img {
  width: 100px;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  color: var(--silver);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.mobile-nav-close svg {
  width: 18px;
  height: 18px;
}

.mobile-nav-close:hover {
  background: rgba(230, 57, 70, 0.18);
  border-color: rgba(230, 57, 70, 0.4);
  color: #ff5f6b;
}

.mobile-nav-pp {
  margin-top: 16px;
  padding: 13px 16px !important;
  background: linear-gradient(135deg, #f5a623 0%, #f7c05a 50%, #e8920f 100%) !important;
  color: #1a0e00 !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  text-align: center;
  border-left: none !important;
  box-shadow: 0 0 18px var(--glow-gold);
}

.mobile-nav-pp:hover {
  background: linear-gradient(135deg, #f7c05a 0%, #f5a623 100%) !important;
  border-left-color: transparent !important;
}

/* Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Show burger only on mobile */
@media (max-width: 640px) {
  .burger {
    display: flex;
  }
}

  .flex-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    @media (min-width: 768px) {
    
        flex-direction: row;
      }
  }

  .img-box {
  width: 100%;
  height: auto; 
  /* max-width: 700px; */
  border-radius: 5px;
  overflow: hidden;
  margin: 15px auto;
   
   

    & img {
      width: 100%;
      height: 100%;
      margin: 0 auto;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center;
         object-position: center;
      display: block;
    }
}


/* ─── APP SECTION ────────────────────────────────────── */
.app-section {
  padding: 100px 24px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.app-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  /* background: linear-gradient(135deg, rgba(13,21,51,0.85) 0%, rgba(10,31,110,0.2) 100%); */
  border: 1px solid rgba(245, 166, 35, 0.12);
  border-radius: 20px;
  padding: 32px;
}

/* Icon */
.app-card-icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.app-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Info */
.app-card-info {
  flex: 1;
  min-width: 0;
}

.app-card-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 6px;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0;
}

.app-card-dev {
  font-size: 15px;
  font-weight: 600;
  color: #01875f;
  margin: 0 0 4px;
}

.app-card-note {
  font-size: 13px;
  color: rgba(200, 212, 232, 0.5);
  margin: 0 0 20px;
}

/* Stats */
.app-card-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  border: 1px solid rgba(200, 212, 232, 0.1);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
}

.app-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 24px;
}

.app-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(200, 212, 232, 0.12);
  flex-shrink: 0;
}

.app-stat-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.app-stat-label {
  font-size: 11px;
  color: rgba(200, 212, 232, 0.5);
  white-space: nowrap;
}

.app-pegi {
  height: 28px;
  width: auto;
  display: block;
}

/* Buttons */
.app-card-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.app-btn-install {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 48px;
  padding: 0 28px;
  background: #01875f;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(1, 135, 95, 0.35);
}

.app-btn-install:hover {
  background: #017a56;
  transform: translateY(-2px);
}

.app-btn-install:active {
  transform: scale(0.97);
}

.app-btn-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 48px;
  padding: 0 16px;
  background: transparent;
  color: var(--silver);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(200, 212, 232, 0.15);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.app-btn-action:hover {
  background: rgba(200, 212, 232, 0.07);
  color: var(--white);
  border-color: rgba(200, 212, 232, 0.3);
}

.app-btn-action svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.app-btn-action img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* Mobile */
@media (max-width: 600px) {
  .app-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    gap: 20px;
  }

  .app-card-icon {
    width: 96px;
    height: 96px;
  }

  .app-card-stats {
    margin: 0 auto 20px;
  }

  .app-stat {
    padding: 10px 16px;
  }

  .app-card-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .app-btn-install {
    width: 100%;
  }

  .app-btn-action {
    justify-content: center;
  }
}

/* demo */
.iframe-bwb {
    position: relative;
    overflow: hidden;
    /* border-radius: 10px; */
    background-color: #171515ff;
    margin-bottom: 15px;
}

.iframe-bwb__bg-image {
    height: 80vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(50%) blur(6px);
    /* background-image: url(./assets/main1_11zon.webp); */
    
      @media screen and (max-width: 768px) {
         height: 60vh;
    }
}

.iframe-bwb__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}

.iframe-bwb__button-box{
    position: absolute;
    top: 40%;
    left: 50%;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 15px;
}



.iframe-bwb__button {
    transform: translate(-50%, -50%);
    font-size: 1.1em;
    line-height: 48px;
    min-width: 250px;
    border: 0;
    margin: 0;
    box-shadow: none;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    letter-spacing: 2px;
    padding: 4px 10px;
    color: var(--dark-primary);
    background: #f3f2f7;;
    border-radius: 0.75rem;
    transition: all 0.1s ease;
  font-weight: 700;
  text-transform: uppercase;
}

.iframe-bwb__button:hover {
    background: var(--btn-hover);
  }

  .iframe-bwb__red{
    background: #ffcc29;
    transition: all 0.3s ease;
  }

  .iframe-bwb__red:hover{
    background: linear-gradient(145deg, #fded3f, #ffd000);
  }
  

  #game-container {
    /* margin-top: 20px; */
    width: 100%;
    max-width: 100%;
    height: 80vh; 
    display: none; 

    /* margin-bottom: 15px;  */
     background-image:url(./img/main/Aviamasters_2_banner.webp); 
     background-position: center; 
     background-repeat: no-repeat; 
     background-size: cover;

        @media screen and (max-width: 768px) {
         height: 60vh;
    }
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* --- Карточка как на картинке --- */
/* .hero-cta{
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 32px));
  background: #fff;
  color: #111;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
} */
.hero-cta__title{
  margin: 0 0 6px;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 800;
}
.hero-cta__sub{
  margin: 0;
  font-size: clamp(14px, 1.6vw, 18px);
  color: #555;
}
.hero-cta__buttons{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 800;
  text-transform: none;
  letter-spacing: .3px;
  border: 0;
  cursor: pointer;
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: #ffcc29;
  color: #111;
}
.btn--primary:hover{
  background: linear-gradient(145deg, #fded3f, #ffd000);
}

.btn--ghost{
  background: #f3f2f7;
  color: #111;
}
.btn--ghost:hover{
  background: #e8e7ef;
}

/* Появление демо и скрытие карточки */
#iframe-bwb__content{}
.iframe-bwb.is-playing .iframe-bwb__content{ 
  opacity: 0; 
  pointer-events: none; 
  transition: opacity .25s ease;
}

.game{
  width: 100%;
  max-width: 100%;
  height: 0;            /* скрыто до старта */
  overflow: hidden;
  transition: height .25s ease;
  background: #0b1320;
  background-image: url(./img/main/Aviamasters_2_banner.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.iframe-bwb.is-playing + .game{
  height: 420px;        /* высота демо после клика */
}
@media (max-width: 768px){
  .hero-cta{
    grid-template-columns: 1fr;
    text-align: left;
    bottom: 35%;
    padding: 18px;
  }
  .iframe-bwb.is-playing + .game{
    height: 320px;
  }
  .hero-cta__buttons{ justify-content: center; }
}

/* iframe */
.game-iframe{
  width: 100%;
  height: 100%;
  border: 0;
  /* margin-top: 50px; */
}

/* CTA под демкой */
.cta-under-demo{
  display: none;
  gap: 12px;
  padding: 16px;
  justify-content: center;
}
.iframe-bwb.is-playing + .game .cta-under-demo{
  display: flex;
}
.iframe-bwb.is-playing .iframe-bwb__content { opacity:0; pointer-events:none; transition: opacity .25s ease; }
.hero-cta__text{
  text-align: center;
}
.main-btn{
    display: flex;
    justify-content: center;
}


.navigation .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0.9;
}

.navigation__toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.navigation__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #77d9ff 0%, #3e6be5 55%, #4b3fb3 100%);
  position: relative;
  box-shadow: 0 4px 12px rgba(68, 120, 220, 0.45);
}

.navigation__icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 4px;
  border-radius: 999px;
  background: #7b3f92;
  right: -6px;
  bottom: -2px;
  transform: rotate(40deg);
}

.navigation__panel {
  margin-top: 16px;
  padding: 20px 24px;
  border-radius: 16px;
  /* background: linear-gradient(180deg, #1b2130 0%, #171c29 100%); */
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 12px 32px;
}

.navigation--collapsed .navigation__panel {
  display: none;
}

.navigation__link {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.navigation__link:hover {
  color: var(--accent);
}
