 :root {
    --white: #ffffff;
    --bg: #f5f7fa;
    --bg2: #eef1f6;
    --card: #ffffff;
    --card2: #f0f3f8;
    --border: #dde3ed;
    --border2: #c8d0df;
    --gold: #b8860b;
    --gold2: #d4a017;
    --gold-light: #fff4d6;
    --gold-mid: #f5c842;
    --green: #1a7a4a;
    --green-bg: #e8f7ef;
    --red: #c0392b;
    --blue: #1565c0;
    --blue-bg: #e8f0fe;
    --ink: #1a2332;
    --ink2: #2d3f55;
    --muted: #5a6a7e;
    --muted2: #8a99ab;
    --mono: 'JetBrains Mono', monospace;
    --display: 'Bebas Neue', sans-serif;
    --body: 'Rajdhani', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.65;
    overflow-x: hidden;
  }

  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--bg2); }
  ::-webkit-scrollbar-thumb { background: var(--gold2); border-radius: 3px; }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 68px;
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  }

  .nav-logo {
    font-family: var(--display);
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--gold);
    text-decoration: none;
  }

  .nav-logo span { color: var(--ink2); }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-family: var(--body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-download {
    background: var(--green-bg) !important;
    color: var(--green) !important;
    padding: 9px 18px;
    border-radius: 4px;
    font-weight: 700 !important;
    border: 1.5px solid rgba(26,122,74,0.25);
  }

  .nav-download:hover {
    background: #d0f0e0 !important;
    border-color: var(--green) !important;
    color: var(--green) !important;
  }

  .nav-cta {
    background: var(--gold) !important;
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 4px;
    font-weight: 700 !important;
  }

  .nav-cta:hover { background: var(--gold2) !important; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 110px 48px 72px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4fa 60%, #e8eef8 100%);
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(21,101,192,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-light);
    border: 1px solid rgba(184,134,11,0.25);
    padding: 8px 16px;
    border-radius: 30px;
    font-family: var(--mono);
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease both;
  }

  .badge-dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.05); }
  }

  h1 {
    font-family: var(--display);
    font-size: clamp(56px, 6.5vw, 90px);
    line-height: 0.95;
    letter-spacing: 2px;
    color: var(--ink);
    margin-bottom: 10px;
    animation: fadeInUp 0.6s 0.1s ease both;
  }

  h1 .gold { color: var(--gold); }
  h1 .blue { color: var(--blue); }

  .hero-sub {
    font-size: 20px;
    color: var(--muted);
    margin: 24px 0 40px;
    max-width: 540px;
    line-height: 1.65;
    animation: fadeInUp 0.6s 0.2s ease both;
  }

  .hero-sub strong { color: var(--ink); }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s 0.3s ease both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: #fff;
    font-family: var(--body);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 34px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(184,134,11,0.3);
  }

  .btn-primary:hover {
    background: var(--gold2);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(184,134,11,0.35);
  }

  .btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-bg);
    color: var(--green);
    font-family: var(--body);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 28px;
    border-radius: 4px;
    text-decoration: none;
    border: 1.5px solid rgba(26,122,74,0.25);
    cursor: pointer;
    transition: all 0.2s;
  }

  .btn-download:hover {
    background: #d0f0e0;
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,122,74,0.12);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--ink2);
    font-family: var(--body);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 28px;
    border-radius: 4px;
    text-decoration: none;
    border: 1.5px solid var(--border2);
    cursor: pointer;
    transition: all 0.2s;
  }

  .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-light);
  }

  /* ─── DOWNLOAD HUB ─── */
  .download-hub {
    animation: fadeInUp 0.6s 0.3s ease both;
  }

  .download-groups {
    display: flex;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
  }

  .dl-group { flex: 1 1 290px; min-width: 0; }

  .dl-group-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
    white-space: nowrap;
  }

  .dl-group-label::before {
    content: '';
    height: 1px;
    flex: 0 0 18px;
    background: var(--border2);
  }

  .dl-group-label::after {
    content: '';
    height: 1px;
    flex: 1 1 auto;
    background: var(--border2);
  }

  .dl-group-btns { display: flex; gap: 12px; flex-wrap: wrap; }

  .dl-divider {
    flex: 0 0 1px;
    align-self: stretch;
    margin-top: 26px;
    background: var(--border);
  }

  /* Official store buttons */
  .store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 165px;
    min-width: 165px;
    background: #11151f;
    color: #fff;
    text-decoration: none;
    padding: 11px 18px;
    border-radius: 12px;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(17,21,31,0.18);
  }

  .store-btn:hover {
    background: #1c2333;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(17,21,31,0.25);
  }

  .store-btn svg { flex: 0 0 auto; }
  .store-btn .store-txt { display: flex; flex-direction: column; line-height: 1.12; }
  .store-btn .store-small {
    font-family: var(--body);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
  }
  .store-btn .store-big {
    font-family: var(--body);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.3px;
  }

  /* AI app buttons */
  .ai-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 165px;
    min-width: 165px;
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 12px;
    transition: all 0.2s;
  }

  .ai-android { background: linear-gradient(135deg, #2fbf6b 0%, #16934a 100%); box-shadow: 0 4px 16px rgba(22,147,74,0.3); }
  .ai-android:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,147,74,0.4); }
  .ai-windows { background: linear-gradient(135deg, #2b8fff 0%, #1565c0 100%); box-shadow: 0 4px 16px rgba(21,101,192,0.3); }
  .ai-windows:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,101,192,0.4); }

  .ai-btn svg { flex: 0 0 auto; }
  .ai-btn .ai-txt { display: flex; flex-direction: column; line-height: 1.12; }
  .ai-btn .ai-small { font-family: var(--body); font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.92); }
  .ai-btn .ai-big { font-family: var(--body); font-size: 19px; font-weight: 700; letter-spacing: 0.3px; }

  .ai-badge {
    position: absolute;
    top: -9px; right: -8px;
    background: linear-gradient(135deg, #f5c842, #d4a017);
    color: #1a2332;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(184,134,11,0.4);
    border: 1.5px solid var(--white);
  }

  /* Secondary soft buttons */
  .download-secondary {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
  }

  .soft-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 220px;
    background: var(--card2);
    color: var(--ink2);
    text-decoration: none;
    font-family: var(--body);
    font-weight: 600;
    font-size: 16px;
    padding: 13px 22px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    transition: all 0.2s;
  }

  .soft-btn:hover {
    background: var(--white);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  }

  .soft-btn .soft-ic { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
  .tg-circle {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: #2ca5e0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1.5px solid var(--border);
    animation: fadeInUp 0.6s 0.4s ease both;
  }

  .stat-value {
    font-family: var(--display);
    font-size: 40px;
    color: var(--gold);
    line-height: 1;
  }

  .stat-label {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted2);
    margin-top: 4px;
    font-weight: 600;
  }

  /* ─── VIDEO ─── */
  .hero-visual { animation: fadeInRight 0.8s 0.3s ease both; }

  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .video-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .video-label {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    font-weight: 700;
  }

  .video-dot {
    width: 9px; height: 9px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(192,57,43,0.15);
    animation: pulse-red 1.5s infinite;
  }

  @keyframes pulse-red {
    0%, 100% { box-shadow: 0 0 0 3px rgba(192,57,43,0.15); }
    50% { box-shadow: 0 0 0 7px rgba(192,57,43,0.04); }
  }

  .video-frame {
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 570px;
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow:
      0 4px 0 0 rgba(184,134,11,0.2),
      0 20px 60px rgba(0,0,0,0.12);
    background: #000;
  }

  .video-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
  }

  .video-caption {
    margin-top: 14px;
    font-family: var(--mono);
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--muted2);
    text-align: center;
  }

  /* ─── SECTIONS ─── */
  section { padding: 100px 48px; }

  .container { max-width: 1200px; margin: 0 auto; }

  .section-label {
    font-family: var(--mono);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
  }

  .section-label::before {
    content: '';
    width: 28px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
  }

  h2 {
    font-family: var(--display);
    font-size: clamp(38px, 4.5vw, 58px);
    letter-spacing: 2px;
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: 18px;
  }

  h2 .gold { color: var(--gold); }

  .section-desc {
    font-size: 19px;
    font-weight: 500;
    color: var(--muted);
    max-width: 620px;
    line-height: 1.65;
    margin-bottom: 60px;
  }

  /* ─── ABOUT POKERRRR2 ─── */
  .info-section {
    background: var(--white);
    border-top: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
  }

  .info-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
  }

  .info-text p {
    color: var(--ink2);
    margin-bottom: 22px;
    line-height: 1.75;
    font-size: 19px;
    font-weight: 600;
  }

  .info-text p strong { color: var(--ink); }

  .info-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .fact-box {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 22px;
    transition: all 0.2s;
  }

  .fact-box:hover {
    border-color: var(--gold);
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184,134,11,0.1);
  }

  .fact-icon {
    width: 44px; height: 44px;
    margin-bottom: 12px;
    display: block;
  }

  .fact-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 6px;
  }

  .fact-desc {
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.55;
  }

  .info-aside { position: sticky; top: 88px; }

  .spec-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }

  .spec-card-header {
    background: var(--ink);
    padding: 16px 22px;
    font-family: var(--mono);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-mid);
    font-weight: 700;
  }

  .spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }

  .spec-row:last-child { border-bottom: none; }
  .spec-key { color: var(--muted); font-weight: 500; }
  .spec-val { color: var(--ink); font-weight: 700; }
  .spec-val.green { color: var(--green); }
  .spec-val.gold { color: var(--gold); }

  /* ─── FEATURES ─── */
  .features-section { background: var(--bg); }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .feature-tile {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }

  .feature-tile:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(184,134,11,0.1);
  }

  .feature-tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .feature-tile:hover::before { transform: scaleX(1); }

  .feature-number {
    font-family: var(--display);
    font-size: 64px;
    color: rgba(184,134,11,0.55);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.2s;
  }

  .feature-tile:hover .feature-number { color: var(--gold); }

  .feature-icon-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }

  .feature-icon-img {
    width: 48px; height: 48px;
    display: block;
    border-radius: 10px;
    background: var(--gold-light);
    padding: 8px;
  }

  .feature-tag {
    font-family: var(--mono);
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-light);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    border: 1px solid rgba(184,134,11,0.2);
  }

  h3 {
    font-family: var(--body);
    font-weight: 700;
    font-size: 24px;
    color: var(--ink);
    margin-bottom: 12px;
  }

  .feature-desc {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
  }

  .feature-list {
    list-style: none;
    margin-top: 20px;
    border-top: 1.5px solid var(--border);
    padding-top: 16px;
  }

  .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: var(--muted);
    padding: 7px 0;
    border-bottom: 1px solid var(--bg2);
  }

  .feature-list li:last-child { border-bottom: none; }

  .li-icon {
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  /* ─── HOW IT WORKS ─── */
  .how-section {
    background: var(--white);
    border-top: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border2), var(--gold2), var(--border2), transparent);
  }

  .step { text-align: center; padding: 0 12px; }

  .step-num {
    width: 88px; height: 88px;
    background: var(--white);
    border: 2px solid var(--border2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 36px;
    color: var(--gold);
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  }

  .step:hover .step-num {
    border-color: var(--gold);
    background: var(--gold-light);
    box-shadow: 0 8px 24px rgba(184,134,11,0.15);
  }

  .step-title {
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 10px;
  }

  .step-desc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.65;
  }

  /* ─── INSTALL TABS ─── */
  .install-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 44px;
    flex-wrap: wrap;
  }

  .install-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1.5px solid var(--border2);
    color: var(--muted);
    font-family: var(--body);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 13px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
  }

  .install-tab svg { width: 20px; height: 20px; }
  .install-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 4px 16px rgba(184,134,11,0.25);
  }
  .install-tab:not(.active):hover { border-color: var(--gold); color: var(--gold); }

  .install-panel { display: none; max-width: 820px; margin: 0 auto; }
  .install-panel.active { display: block; }

  .install-step { display: flex; gap: 22px; padding: 0 0 32px; position: relative; }
  .install-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 23px; top: 52px; bottom: -2px;
    width: 2px;
    background: var(--border);
  }

  .install-step-num {
    flex: 0 0 48px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gold-light);
    border: 2px solid var(--gold2);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 22px;
    z-index: 1;
  }

  .install-step-body { padding-top: 6px; }
  .install-step-title { font-weight: 700; font-size: 18px; color: var(--ink); margin-bottom: 8px; }
  .install-step-body p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 8px; }
  .install-step-body ul { margin: 6px 0 8px; padding-left: 20px; }
  .install-step-body li { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 5px; }
  .install-step-body strong { color: var(--ink2); }

  .install-note {
    background: var(--blue-bg);
    border: 1px solid rgba(21,101,192,0.2);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.6;
    margin-top: 8px;
  }

  .install-dl {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-bg);
    color: var(--green);
    border: 1.5px solid rgba(26,122,74,0.25);
    font-family: var(--body);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 12px;
    transition: all 0.2s;
  }
  .install-dl:hover { background: #d0f0e0; border-color: var(--green); transform: translateY(-1px); }

  .install-finish {
    max-width: 820px;
    margin: 16px auto 0;
    background: var(--green-bg);
    border: 1.5px solid rgba(26,122,74,0.3);
    border-radius: 12px;
    padding: 26px 30px;
  }
  .install-finish-title {
    font-family: var(--display);
    font-size: 26px;
    letter-spacing: 1px;
    color: var(--green);
    margin-bottom: 10px;
  }
  .install-finish p { font-size: 16px; color: var(--ink2); line-height: 1.7; margin-bottom: 14px; }
  .install-finish p:last-child { margin-bottom: 0; }
  .install-finish-tg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2ca5e0;
    color: #fff;
    font-family: var(--body);
    font-weight: 700;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
  }
  .install-finish-tg:hover { background: #1a8fc4; }

  /* ─── FAQ ─── */
  .faq-section { background: var(--bg); }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .faq-item {
    border-bottom: 1.5px solid var(--border);
    padding-bottom: 24px;
    margin-bottom: 24px;
    cursor: pointer;
  }

  .faq-item:last-child { border-bottom: none; margin-bottom: 0; }

  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
    transition: color 0.2s;
  }

  .faq-q:hover { color: var(--gold); }

  .faq-toggle {
    color: var(--gold);
    font-size: 24px;
    flex-shrink: 0;
    transition: transform 0.2s;
    font-family: var(--mono);
    line-height: 1;
  }

  .faq-a {
    display: none;
    font-size: 17px;
    color: var(--muted);
    line-height: 1.75;
    margin-top: 14px;
  }

  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }
  .faq-item.open .faq-q { color: var(--gold); }

  /* ─── CTA ─── */
  .cta-section {
    background: var(--ink);
    text-align: center;
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 65%);
    pointer-events: none;
  }

  .cta-section h2 {
    color: #fff;
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
  }

  .cta-section h2 .gold { color: var(--gold-mid); }

  .cta-section p {
    font-size: 20px;
    color: rgba(255,255,255,0.65);
    max-width: 540px;
    margin: 0 auto 44px;
    position: relative;
    z-index: 1;
    line-height: 1.65;
  }

  .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }

  .btn-tg {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #2ca5e0;
    color: #fff;
    font-family: var(--body);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 17px 36px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(44,165,224,0.3);
  }

  .btn-tg:hover {
    background: #1a8fc4;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(44,165,224,0.4);
  }

  .tg-icon { width: 24px; height: 24px; }

  /* ─── HAMBURGER & MOBILE MENU ─── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
  }

  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.25s;
  }

  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 58px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1.5px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: 99;
    flex-direction: column;
    padding: 12px 0 20px;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    padding: 14px 24px;
    font-family: var(--body);
    font-weight: 600;
    font-size: 17px;
    color: var(--ink2);
    text-decoration: none;
    border-bottom: 1px solid var(--bg2);
    letter-spacing: 0.3px;
    transition: background 0.15s;
  }

  .mobile-menu a:hover { background: var(--bg); color: var(--gold); }

  .mobile-menu-cta {
    margin: 12px 16px 8px !important;
    background: #2ca5e0 !important;
    color: white !important;
    border-radius: 6px !important;
    border-bottom: none !important;
    text-align: center;
    justify-content: center;
  }

  .mobile-menu-dl {
    margin: 0 16px !important;
    background: var(--green-bg) !important;
    color: var(--green) !important;
    border-radius: 6px !important;
    border-bottom: none !important;
    text-align: center;
    justify-content: center;
    border: 1.5px solid rgba(26,122,74,0.2) !important;
  }

  @media (max-width: 960px) {
    .nav-hamburger { display: flex; }
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--ink2);
    padding: 52px 48px;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-logo {
    font-family: var(--display);
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--gold-mid);
    text-decoration: none;
  }

  .footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
    flex-wrap: wrap;
  }

  .footer-links a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.5px;
  }

  .footer-links a:hover { color: var(--gold-mid); }

  .footer-copy {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    font-family: var(--mono);
  }

  .footer-disclaimer {
    max-width: 1200px;
    margin: 24px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
  }

  /* ─── BLOG ─── */
  .blog-section {
    background: var(--bg);
    border-top: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
  }

  .blog-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
  }

  .blog-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(184,134,11,0.1);
  }

  .blog-img-link { display: block; flex-shrink: 0; }

  .blog-img {
    width: 100%;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    background: var(--bg2);
    display: block;
  }

  .blog-img svg { display: block; width: 100%; height: 100%; }

  .blog-body {
    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .blog-tag {
    font-family: var(--mono);
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-light);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
    border: 1px solid rgba(184,134,11,0.2);
  }

  .blog-date {
    font-size: 14px;
    color: var(--muted2);
    font-family: var(--mono);
  }

  .blog-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .blog-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }

  .blog-card h3 a:hover { color: var(--gold); }

  .blog-excerpt {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
  }

  .blog-read-more {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: gap 0.2s;
  }

  .blog-read-more:hover { color: var(--gold2); letter-spacing: 0.8px; }

  .blog-cta {
    text-align: center;
    padding-top: 8px;
  }



  /* ─── INFOGRAPHIC: WIN RATE ─── */
  .infographic-section {
    background: var(--white);
    border-top: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
  }

  .charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .chart-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 32px;
  }

  .chart-title {
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 28px;
    letter-spacing: 0.3px;
  }

  .bar-chart { display: flex; flex-direction: column; gap: 18px; }

  .bar-row {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .bar-label {
    font-size: 14px;
    color: var(--muted);
    min-width: 140px;
    font-weight: 600;
    flex-shrink: 0;
  }

  .bar-track {
    flex: 1;
    height: 34px;
    background: var(--bg2);
    border-radius: 6px;
    overflow: hidden;
  }

  .bar-fill {
    height: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 700;
    color: white;
    transition: width 1.2s ease;
    animation: growWidth 1.2s ease both;
  }

  @keyframes growWidth {
    from { width: 0 !important; }
  }

  .bar-red { background: linear-gradient(90deg, #e74c3c, #c0392b); }
  .bar-yellow { background: linear-gradient(90deg, #f39c12, #e67e22); }
  .bar-green { background: linear-gradient(90deg, #27ae60, #1a7a4a); }
  .bar-gold { background: linear-gradient(90deg, #b8860b, #d4a017); }

  .chart-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--muted2);
    font-family: var(--mono);
    border-top: 1px solid var(--border);
    padding-top: 14px;
  }

  .stat-cards-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .big-stat-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .big-stat-text { flex: 1; }

  .big-stat-value {
    font-family: var(--display);
    font-size: 52px;
    color: var(--gold);
    line-height: 1;
  }

  .big-stat-label {
    font-size: 16px;
    color: var(--muted);
    margin-top: 6px;
    line-height: 1.5;
  }

  .mini-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .mini-stat {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.2s;
  }

  .mini-stat:hover {
    border-color: var(--gold);
    background: var(--gold-light);
    transform: translateY(-2px);
  }

  .mini-stat-val {
    font-family: var(--display);
    font-size: 32px;
    line-height: 1;
    margin-bottom: 6px;
  }

  .mini-stat-label {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.45;
  }

  /* ─── HUD SECTION ─── */
  .hud-section {
    background: var(--bg);
    border-bottom: 1.5px solid var(--border);
    padding: 100px 48px;
  }

  .hud-mockup {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  }

  /* ─── COMPARE TABLE ─── */
  .compare-section {
    background: var(--white);
    border-bottom: 1.5px solid var(--border);
    padding: 100px 48px;
  }

  .compare-table {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  }

  .compare-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--ink);
    padding: 18px 28px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .compare-feature-col { color: rgba(255,255,255,0.5); }

  .compare-col {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .compare-manual { color: rgba(255,255,255,0.7); }
  .compare-ai { color: var(--gold-mid); }

  .compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 16px 28px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    font-size: 17px;
    transition: background 0.15s;
  }

  .compare-row:last-child { border-bottom: none; }
  .compare-row:hover { background: var(--bg2); }
  .compare-row-alt { background: var(--bg); }
  .compare-row-alt:hover { background: var(--bg2); }

  .compare-row .compare-feature-col { color: var(--ink2); font-weight: 600; }
  .compare-row .compare-col { justify-content: center; }

  .compare-good {
    color: var(--green);
    font-weight: 700;
    background: var(--green-bg);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 15px;
    display: inline-block;
  }

  .compare-bad {
    color: var(--red);
    font-weight: 600;
    font-size: 15px;
    opacity: 0.85;
  }

  .compare-neutral {
    color: var(--muted);
    font-size: 15px;
  }

  /* ─── RESPONSIVE additions ─── */


  /* ─── ANIMATIONS ─── */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* ─── REVIEWS ─── */
  .reviews-section {
    background: var(--white);
    border-top: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .review-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
  }

  .review-card:hover {
    border-color: var(--gold2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  }

  .review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
  .review-stars svg { width: 18px; height: 18px; }

  .review-text {
    color: var(--ink2);
    font-size: 16px;
    line-height: 1.7;
    flex: 1 1 auto;
    margin-bottom: 22px;
  }

  .review-author { display: flex; align-items: center; gap: 14px; }

  .review-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-mid), var(--gold));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 18px;
    letter-spacing: 1px;
    flex: 0 0 auto;
  }

  .review-name { font-weight: 700; font-size: 16px; color: var(--ink); }
  .review-meta {
    font-size: 14px;
    color: var(--muted2);
    font-family: var(--mono);
    letter-spacing: 0.5px;
  }

  /* ─── RESPONSIVE ─── */

  /* Tablet: 768–960px */
  @media (max-width: 960px) {
    /* Nav */
    nav { padding: 0 16px; height: 60px; }
    .nav-links { display: none; }
    .nav-logo { font-size: 18px; }

    /* Hero */
    .hero { padding: 88px 20px 56px; }
    .hero-inner { grid-template-columns: 1fr; gap: 0; }
    .hero-visual { display: none; }
    h1 { font-size: clamp(44px, 10vw, 72px); }
    .hero-sub { font-size: 18px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .stat-value { font-size: 32px; }

    /* Sections */
    section { padding: 64px 20px; }
    .hud-section, .compare-section { padding: 64px 20px; }

    /* Info */
    .info-grid { grid-template-columns: 1fr; gap: 40px; }
    .info-aside { position: static; }
    .info-facts { grid-template-columns: 1fr 1fr; }

    /* Features */
    .features-grid { grid-template-columns: 1fr; }

    /* Steps */
    .steps-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .steps-grid::before { display: none; }

    /* Charts */
    .charts-grid { grid-template-columns: 1fr; }
    .mini-stats-row { grid-template-columns: 1fr 1fr 1fr; }
    .bar-label { min-width: 110px; font-size: 14px; }

    /* Compare */
    .compare-header, .compare-row { grid-template-columns: 1fr 1fr; padding: 14px 16px; }
    .compare-header .compare-feature-col { display: none; }
    .compare-row { row-gap: 12px; align-items: stretch; }
    .compare-row .compare-feature-col {
      display: block;
      grid-column: 1 / -1;
      color: var(--ink);
      font-weight: 700;
      font-size: 16px;
    }

    /* Blog */
    .blog-grid { grid-template-columns: 1fr 1fr; }

    /* Reviews */
    .reviews-grid { grid-template-columns: 1fr 1fr; }

    /* FAQ */
    .faq-grid { grid-template-columns: 1fr; gap: 0; }

    /* CTA */
    .cta-section { padding: 72px 20px; }

    /* Footer */
    footer { padding: 40px 20px; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-links { gap: 16px; }
  }

  /* Mobile: up to 600px */
  @media (max-width: 600px) {
    /* Nav */
    nav { padding: 0 16px; height: 58px; }
    .nav-logo { font-size: 16px; letter-spacing: 1px; }
    .nav-download { display: none; }

    /* Hero */
    .hero { padding: 80px 16px 48px; min-height: auto; }
    h1 { font-size: clamp(38px, 11vw, 56px); line-height: 1; }
    .hero-badge { font-size: 14px; padding: 6px 12px; }
    .hero-sub { font-size: 17px; margin: 16px 0 28px; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .btn-primary, .btn-tg, .btn-download { width: 100%; justify-content: center; padding: 15px 20px; font-size: 15px; }
    .btn-secondary { width: 100%; justify-content: center; }
    .download-groups { gap: 22px; }
    .dl-divider { display: none; }
    .store-btn, .ai-btn { flex: 1 1 100%; }
    .soft-btn { flex: 1 1 100%; justify-content: center; }
    .hero-stats { gap: 20px; margin-top: 36px; padding-top: 24px; }
    .stat-value { font-size: 28px; }
    .stat-label { font-size: 14px; }

    /* Sections */
    section { padding: 56px 16px; }
    .hud-section, .compare-section { padding: 56px 16px; }
    h2 { font-size: clamp(30px, 8vw, 44px); }
    .section-desc { font-size: 17px; margin-bottom: 40px; }

    /* Info */
    .info-facts { grid-template-columns: 1fr 1fr; gap: 12px; }
    .fact-box { padding: 16px; }
    .fact-icon { width: 36px; height: 36px; }

    /* Features */
    .feature-tile { padding: 28px 24px; }
    .feature-number { font-size: 48px; }
    h3 { font-size: 20px; }

    /* Steps */
    .steps-grid { grid-template-columns: 1fr; gap: 28px; }
    .step-num { width: 70px; height: 70px; font-size: 28px; }
    .install-tabs { gap: 8px; margin-bottom: 32px; }
    .install-tab { flex: 1 1 auto; justify-content: center; padding: 12px 16px; font-size: 15px; }
    .install-step { gap: 16px; }
    .install-step-num { flex: 0 0 40px; width: 40px; height: 40px; font-size: 18px; }
    .install-step:not(:last-child)::before { left: 19px; top: 44px; }
    .install-finish { padding: 22px 20px; }

    /* Charts */
    .chart-card { padding: 20px 16px; }
    .bar-row { flex-direction: column; align-items: flex-start; gap: 6px; }
    .bar-label { min-width: auto; width: 100%; }
    .bar-track { width: 100%; }
    .big-stat-card { flex-direction: column; text-align: center; padding: 20px; gap: 16px; }
    .mini-stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
    .mini-stat { padding: 16px 12px; }
    .mini-stat-val { font-size: 26px; }

    /* HUD mockup — scale down on mobile */
    .hud-mockup { padding: 12px; overflow-x: auto; }
    .hud-mockup svg { min-width: 480px; }

    /* Compare */
    .compare-header { padding: 12px 14px; font-size: 14px; }
    .compare-row { padding: 12px 14px; font-size: 15px; }
    .compare-good, .compare-bad, .compare-neutral { font-size: 14px; }

    /* Blog */
    .blog-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .blog-body { padding: 20px; }
    .blog-card h3 { font-size: 17px; }
    .blog-excerpt { font-size: 14px; }

    /* FAQ */
    .faq-q { font-size: 16px; }
    .faq-a { font-size: 16px; }

    /* CTA */
    .cta-section { padding: 60px 16px; }
    .cta-section p { font-size: 17px; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn-tg, .cta-actions .btn-secondary { width: 100%; max-width: 340px; justify-content: center; }

    /* Footer */
    footer { padding: 36px 16px; }
    .footer-links { gap: 12px; }
    .footer-links a { font-size: 14px; }
    .footer-disclaimer { font-size: 14px; }
  }

  /* Very small: 360px */
  @media (max-width: 380px) {
    h1 { font-size: 34px; }
    .info-facts { grid-template-columns: 1fr; }
    .mini-stats-row { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr 1fr; display: grid; gap: 16px; }
  }



#comments {
	display: none;
}

/* ========== ОСНОВНЫЕ СТИЛИ ДЛЯ МЕНЮ ЯЗЫКОВ ========== */
#primary-menu {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto; /* Прижимаем к правому краю */
}

#primary-menu > .pll-parent-menu-item {
    position: relative;
    list-style: none;
}

/* Кнопка переключателя (RU, EN и т.д.) */
#primary-menu > .pll-parent-menu-item > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Стрелка вниз */
#primary-menu > .pll-parent-menu-item > a:after {
    content: "▼";
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* При наведении */
#primary-menu > .pll-parent-menu-item:hover > a {
    background: rgba(255, 255, 255, 0.4);
}

/* Выпадающий список (десктоп - при наведении) */
#primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    right: 0; /* Выравниваем по правому краю */
    min-width: 100px;
    background: #d9f1fe;
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px 0;
    margin: 5px 0 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

/* Показываем подменю при наведении (десктоп) */
#primary-menu > .pll-parent-menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Стили для пунктов выпадающего списка */
#primary-menu .sub-menu li {
    margin: 0;
    padding: 0;
}

#primary-menu .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

#primary-menu .sub-menu li a:hover {
    background: rgba(255, 215, 225, 0.15);
    color: var(--gold, #6d8efe);
}

/* Активный язык (текущий) */
#primary-menu .sub-menu .current-lang a {
    color: var(--gold, #6d8efe);
    background: rgba(255, 215, 225, 0.1);
    position: relative;
}

#primary-menu .sub-menu .current-lang a:before {
    content: "✓";
    position: absolute;
    left: 8px;
    color: var(--gold, #6d8efe);
}

/* ========== МОБИЛЬНАЯ ВЕРСИЯ ========== */
@media (max-width: 768px) {
    #primary-menu {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
    
    #primary-menu > .pll-parent-menu-item {
        width: 100%;
    }
    
    #primary-menu > .pll-parent-menu-item > a {
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.05);
    }
    
    /* Скрываем подменю по умолчанию на мобилке */
    #primary-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
        margin-top: 5px;
        margin-bottom: 10px;
        padding: 5px 0;
        border-left: 2px solid rgba(255, 215, 0, 0.3);
        display: none; /* Скрыто по умолчанию */
    }
    
    /* Показываем подменю когда есть класс .open */
    #primary-menu > .pll-parent-menu-item.open .sub-menu {
        display: block;
    }
    
    /* Стили для пунктов в мобильной версии */
    #primary-menu .sub-menu li a {
        padding: 10px 20px 10px 30px;
        white-space: normal;
    }
    
    /* Убираем эффект при наведении на мобилке */
    #primary-menu .sub-menu li a:hover {
        padding-left: 30px;
    }
    
    /* Анимация стрелки при открытии */
    #primary-menu > .pll-parent-menu-item.open > a:after {
        transform: rotate(180deg);
    }
}

/* ========== АДАПТАЦИЯ ДЛЯ ПЛАНШЕТОВ ========== */
@media (min-width: 769px) and (max-width: 1024px) {
    #primary-menu .sub-menu {
        right: 0;
    }
}


.entry-header {
	margin-bottom: 32px;
}


.type-post {
	padding-top: 60px;
}

.type-post h1 {
	font-size: 36px;
	margin-bottom: 16px;
}
.type-post h2 {
	font-size: 28px;
	margin: 16px 0;
	display: block;
}
.type-post h3 {
	font-size: 24px;
	margin: 16px 0;
	display: block;
}

.skip-link {
display: none;
}