/* ========================
     RESET & BASE
  ======================== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --bg:     #2d1a08;
    --bg2:    #3d2510;
    --card:   #4a2e14;
    --orange: #e07d30;
    --amber:  #ffb347;
    --green:  #4ade80;
    --text:   #fff5e0;
    --text2:  rgba(255,245,224,0.65);
    --muted:  rgba(255,245,224,0.4);
    --border: rgba(255,245,224,0.12);
    --shadow: 0 24px 70px rgba(0,0,0,0.55);
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; height: auto; }
  ul, ol { list-style: none; }
  h1, h2, h3 { font-weight: 900; letter-spacing: -0.03em; line-height: 1.08; }
  h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
  h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 14px; }
  h3 { font-size: 1.2rem; margin-bottom: 10px; }
  p { margin: 0; }

  /* ========================
     UTILITIES
  ======================== */
  .eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
  }
  .lead {
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    color: var(--text2);
    line-height: 1.72;
  }
  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px clamp(20px,5vw,64px);
  }
  .section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
  }
  .section-header h2 { margin-bottom: 16px; }

  /* ========================
     BUTTONS
  ======================== */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 34px;
    background: linear-gradient(135deg, var(--orange) 0%, #c56520 100%);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(224,125,48,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 44px rgba(224,125,48,0.6);
  }
  .btn-primary.btn-lg { padding: 20px 44px; font-size: 1.15rem; }
  .appstore-link { display: inline-block; transition: transform 0.2s, opacity 0.2s; }
  .appstore-link:hover { transform: translateY(-2px); opacity: 0.9; }
  .appstore-link img { height: 62px; width: auto; }

  /* ========================
     NAV
  ======================== */
  .site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(16px, 4vw, 56px);
    background: rgba(45,26,8,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, box-shadow 0.3s;
  }
  .site-nav.scrolled {
    background: rgba(30,16,4,0.97);
    box-shadow: 0 4px 32px rgba(0,0,0,0.45);
  }
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    flex-shrink: 0;
  }
  .nav-brand img {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }
  .nav-links-list {
    display: flex;
    align-items: center;
    gap: 2px;
  }
  .nav-links-list li a {
    display: block;
    padding: 7px 13px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text2);
    transition: color 0.2s, background 0.2s;
  }
  .nav-links-list li a:hover,
  .nav-links-list li a.active {
    color: var(--text);
    background: rgba(255,245,224,0.08);
  }
  .nav-links-list .nav-cta-item a {
    padding: 9px 18px;
    background: var(--orange);
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 18px rgba(224,125,48,0.4);
  }
  .nav-links-list .nav-cta-item a:hover {
    background: #d0701f;
    color: #fff;
  }
  /* Hamburger */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }
  .nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  /* Mobile menu */
  .nav-mobile-menu {
    display: none;
    position: fixed;
    top: 66px; left: 0; right: 0;
    z-index: 199;
    background: rgba(30,16,4,0.98);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px 20px;
    flex-direction: column;
    gap: 4px;
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu a {
    display: block;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    color: var(--text2);
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
  }
  .nav-mobile-menu a:hover { background: rgba(255,245,224,0.07); color: var(--text); }
  .nav-mobile-menu .nav-cta-mobile {
    margin-top: 10px;
    text-align: center;
    background: var(--orange);
    color: #fff !important;
    border-radius: 50px;
    padding: 14px 16px;
  }
  .nav-mobile-menu .nav-cta-mobile:hover { background: #d0701f !important; }

  /* ========================
     SECTION 1 — HERO
  ======================== */
  #home {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: 66px;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/screen7-en.jpg');
    background-size: cover;
    background-position: center 20%;
    opacity: 0.13;
    filter: saturate(0.4) blur(1px);
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, var(--bg) 30%, rgba(45,26,8,0.5) 65%, transparent 100%),
      linear-gradient(to bottom, rgba(45,26,8,0) 40%, var(--bg) 95%);
  }
  .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 60px clamp(20px,5vw,64px) 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
  }
  .hero-copy h1 {
    margin-bottom: 22px;
    background: linear-gradient(135deg, var(--text) 50%, var(--amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-copy .lead { margin-bottom: 28px; font-size: clamp(1.02rem, 1.8vw, 1.22rem); }
  .hero-hooks {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 34px;
  }
  .hero-hook {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text2);
    background: rgba(255,245,224,0.07);
    border: 1px solid var(--border);
    padding: 7px 14px;
    border-radius: 50px;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-version {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--muted);
  }
  /* Phone frame */
  .hero-phone { flex-shrink: 0; }
  .phone-frame {
    position: relative;
    width: 256px;
    border-radius: 44px;
    border: 3px solid rgba(255,245,224,0.2);
    background: #180d03;
    padding: 14px 12px 12px;
    box-shadow:
      0 50px 120px rgba(0,0,0,0.75),
      0 0 0 1px rgba(255,255,255,0.04),
      inset 0 0 0 2px rgba(255,245,224,0.06);
  }
  .phone-notch {
    width: 68px;
    height: 6px;
    background: rgba(255,245,224,0.22);
    border-radius: 3px;
    margin: 0 auto 10px;
  }
  .phone-frame img {
    width: 100%;
    border-radius: 32px;
    display: block;
  }

  /* ========================
     SECTION 2 — FEATURES
  ======================== */
  #features { background: var(--bg); }

  /* Sub-section labels */
  .sub-heading {
    text-align: center;
    margin-bottom: 40px;
  }
  .sub-heading h2 { margin-bottom: 8px; }

  /* Steps */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 80px;
  }
  .step-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 34px 28px;
    position: relative;
    overflow: hidden;
  }
  .step-card::before {
    content: attr(data-step);
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .step-icon { font-size: 2.6rem; display: block; margin-bottom: 18px; }
  .step-card h3 { color: var(--amber); font-size: 1.35rem; margin-bottom: 12px; }
  .step-card p { color: var(--text2); font-size: 0.93rem; line-height: 1.72; }

  /* For every player */
  .players-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 80px;
  }
  .players-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 34px 30px;
  }
  .players-card h3 { color: var(--amber); font-size: 1.2rem; margin-bottom: 18px; }
  .players-list { display: flex; flex-direction: column; gap: 11px; }
  .players-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text2);
    font-size: 0.93rem;
    line-height: 1.52;
  }
  .players-list li .check-mark {
    color: var(--green);
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* Production chains */
  .chains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 80px;
  }
  .chain-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px 22px;
    text-align: center;
  }
  .chain-emoji { font-size: 2rem; display: block; margin-bottom: 10px; }
  .chain-card h3 { color: var(--amber); margin-bottom: 4px; font-size: 1.15rem; }
  .chain-path {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
  }
  .chain-desc { font-size: 0.85rem; color: var(--text2); margin-bottom: 22px; }
  .chain-buildings {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap;
  }
  .chain-buildings figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .chain-buildings figure img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
  }
  .chain-buildings figcaption {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .chain-arrow {
    color: var(--orange);
    font-size: 1.1rem;
    font-weight: 900;
    flex-shrink: 0;
    padding-bottom: 22px;
    line-height: 1;
  }

  /* Multiplayer block */
  .multiplayer-block {
    background: linear-gradient(135deg, #3d2510 0%, #281504 100%);
    border: 1px solid rgba(224,125,48,0.28);
    border-radius: 28px;
    padding: clamp(32px, 5vw, 58px);
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 44px;
    align-items: center;
  }
  .multiplayer-text h2 {
    color: var(--amber);
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    margin-bottom: 20px;
  }
  .multiplayer-text p {
    color: var(--text2);
    line-height: 1.78;
    font-size: 0.98rem;
    margin-bottom: 14px;
  }
  .multiplayer-text p:last-child { margin-bottom: 0; }
  .multiplayer-text .emphasis {
    color: var(--text);
    font-weight: 800;
    margin-top: 20px;
  }
  .multiplayer-img { flex-shrink: 0; width: 190px; }
  .multiplayer-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  }

  /* Videos */
  .videos-header { text-align: center; margin-bottom: 32px; }
  .videos-header h3 { color: var(--amber); font-size: 1.3rem; margin-bottom: 6px; }
  .videos-header p { color: var(--text2); font-size: 0.9rem; }
  .videos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .video-wrap {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
  }
  .video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  .video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  .video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(74,46,20,0.7);
    color: var(--muted);
    gap: 12px;
  }
  .play-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(224,125,48,0.25);
    border: 2px solid rgba(224,125,48,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
  }
  .video-placeholder p { font-size: 0.8rem; font-weight: 700; text-align: center; padding: 0 16px; }
  .video-channel-link { display: block; text-decoration: none; }
  .video-channel-link:hover .video-placeholder { background: rgba(74,46,20,0.85); }
  .video-channel-link:hover .play-icon { background: rgba(224,125,48,0.5); border-color: var(--orange); }
  .yt-label {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 12px;
    background: var(--orange);
    color: #fff;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
  }
  .video-caption {
    padding: 14px 18px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text2);
    text-align: center;
  }

  /* ========================
     SECTION 3 — SCREENSHOTS
  ======================== */
  #screenshots {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 40%, var(--bg) 100%);
    overflow: hidden;
  }
  #screenshots .section-inner { padding-bottom: 40px; }
  .carousel-wrapper { position: relative; }
  .carousel-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px clamp(20px,5vw,64px) 24px;
    cursor: grab;
    user-select: none;
  }
  .carousel-track:active { cursor: grabbing; }
  .carousel-track::-webkit-scrollbar { display: none; }
  .carousel-slide {
    flex: 0 0 clamp(188px, 24vw, 264px);
    scroll-snap-align: start;
  }
  .slide-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 10px 10px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
  }
  .slide-card:hover { transform: translateY(-8px); }
  .slide-card img {
    width: 100%;
    border-radius: 14px;
    aspect-ratio: 9/19.5;
    object-fit: cover;
    background: rgba(255,245,224,0.04);
    display: block;
    pointer-events: none;
  }
  .slide-caption {
    padding: 12px 8px 14px;
    text-align: center;
  }
  .slide-caption strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.3;
  }
  .slide-caption p { font-size: 0.72rem; color: var(--muted); line-height: 1.4; }
  /* Dots */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    padding: 20px 0 10px;
  }
  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--muted);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, width 0.25s;
  }
  .carousel-dot.active {
    background: var(--orange);
    width: 24px;
    border-radius: 4px;
  }
  /* Nav arrows */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(45,26,8,0.88);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: background 0.2s, border-color 0.2s;
  }
  .carousel-btn:hover { background: var(--orange); border-color: var(--orange); }
  .carousel-btn-prev { left: clamp(4px,1vw,14px); }
  .carousel-btn-next { right: clamp(4px,1vw,14px); }
  .screenshots-cta {
    text-align: center;
    padding: 20px clamp(20px,5vw,64px) 10px;
  }
  .screenshots-cta p { color: var(--text2); font-weight: 700; margin-bottom: 16px; font-size: 0.95rem; }

  /* ========================
     SECTION 4 — EMPIRE SCORE
  ======================== */
  #empire-score { background: var(--bg); }
  .empire-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px clamp(20px,5vw,64px);
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: start;
  }
  .empire-left .section-header { text-align: left; margin-left: 0; margin-bottom: 44px; }
  .empire-how-title {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 18px;
  }
  .empire-how-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 44px; }
  .empire-how-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text2);
    font-size: 0.93rem;
  }
  .empire-how-list .how-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  /* Rank table */
  .rank-table {
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 36px;
  }
  .rank-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
  }
  .rank-row:last-child { border-bottom: none; }
  .rank-row:hover { background: rgba(255,245,224,0.04); }
  .rank-row.rank-top { background: linear-gradient(90deg, rgba(224,125,48,0.12), rgba(74,46,20,0.2)); }
  .rank-row.rank-top .rank-title { color: var(--amber); }
  .rank-pct { font-size: 0.78rem; font-weight: 700; color: var(--muted); }
  .rank-title { font-size: 0.92rem; font-weight: 800; }
  .empire-callout {
    background: linear-gradient(135deg, rgba(224,125,48,0.14), rgba(74,46,20,0.4));
    border: 1px solid rgba(224,125,48,0.28);
    border-radius: 16px;
    padding: 22px 26px;
    margin-bottom: 32px;
  }
  .empire-callout p { color: var(--text2); font-size: 0.92rem; line-height: 1.68; }
  /* Right column */
  .empire-right {
    position: sticky;
    top: 90px;
    text-align: center;
  }
  .empire-right img {
    max-width: 100%;
    width: 280px;
    filter: drop-shadow(0 20px 50px rgba(224,125,48,0.35));
  }

  /* ========================
     SECTION 5 — DOWNLOAD
  ======================== */
  #download {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  }
  .download-header { text-align: center; margin-bottom: 56px; }
  .download-header h2 { margin-bottom: 14px; }
  .download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 48px;
  }
  .download-checklist { display: flex; flex-direction: column; gap: 13px; }
  .download-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 700;
  }
  .dl-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(74,222,128,0.14);
    border: 1.5px solid rgba(74,222,128,0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 900;
  }
  .download-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  .download-phone .phone-frame { width: 200px; }
  .download-phone .phone-frame img { border-radius: 26px; }
  .download-meta { font-size: 0.76rem; color: var(--muted); font-weight: 600; line-height: 1.65; }
  .qr-placeholder {
    width: 96px;
    height: 96px;
    border: 2px dashed var(--muted);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.5;
  }
  .download-tagline {
    text-align: center;
    padding-top: 44px;
    border-top: 1px solid var(--border);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--amber);
    letter-spacing: -0.01em;
    margin-bottom: 40px;
  }
  .landscape-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  }
  .landscape-wrap img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ========================
     SECTION 6 — SUPPORT
  ======================== */
  #support { background: var(--bg); }
  .support-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 90px clamp(20px,5vw,64px);
    text-align: center;
  }
  .support-inner h2 { margin-bottom: 14px; }
  .support-inner .lead { margin-bottom: 38px; }
  .support-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
  .support-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--amber);
    transition: background 0.2s;
  }
  .support-email:hover { background: rgba(255,179,71,0.1); }
  .support-page-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text2);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
  }
  .support-page-link:hover { color: var(--amber); }

  /* ========================
     FOOTER
  ======================== */
  .site-footer {
    background: #1c0e03;
    border-top: 1px solid var(--border);
    padding: clamp(28px,4vw,48px) clamp(20px,5vw,64px);
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 900;
    font-size: 0.9rem;
  }
  .footer-brand img { width: 30px; height: 30px; border-radius: 8px; }
  .footer-copy { font-size: 0.78rem; color: var(--muted); line-height: 1.6; text-align: center; flex: 1; }
  .footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .footer-links a {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text2);
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--amber); }
  /* Social icons */
  .social-links {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text2);
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
    flex-shrink: 0;
  }
  .social-link svg { width: 18px; height: 18px; display: block; }
  .social-link:hover { transform: translateY(-2px); }
  .social-link.facebook:hover  { background: #1877f2; border-color: #1877f2; color: #fff; }
  .social-link.tiktok:hover    { background: #010101; border-color: #69c9d0; color: #fff; }
  .social-link.twitter:hover   { background: #000;    border-color: #000;    color: #fff; }
  /* Support social row */
  .support-social { margin-top: 28px; }
  .support-social p { font-size: 0.8rem; color: var(--muted); font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.12em; }
  .support-social .social-links { justify-content: center; }

  /* ========================
     RESPONSIVE
  ======================== */
  @media (max-width: 1020px) {
    .steps-grid { grid-template-columns: 1fr; }
    .chains-grid { grid-template-columns: 1fr; }
    .multiplayer-block { grid-template-columns: 1fr; }
    .multiplayer-img { width: 100%; max-width: 240px; margin: 0 auto; }
    .empire-layout { grid-template-columns: 1fr; }
    .empire-right { position: static; margin: 0 auto; }
  }
  @media (max-width: 780px) {
    .nav-links-list { display: none; }
    .nav-hamburger { display: flex; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-hooks { justify-content: center; }
    .hero-actions { align-items: center; }
    .hero-phone { display: flex; justify-content: center; }
    .phone-frame { width: 220px; }
    .players-grid { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }
    .download-grid { grid-template-columns: 1fr; }
    .empire-left .section-header { text-align: center; }
    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer-links { justify-content: center; }
  }
  @media (max-width: 480px) {
    h1 { font-size: clamp(1.9rem,10vw,2.8rem); }
    h2 { font-size: clamp(1.55rem,7vw,2.2rem); }
    .rank-row { grid-template-columns: 90px 1fr; }
    .chain-buildings figure img { width: 44px; height: 44px; }
  }

/* Footer SEO keyword links row */
.footer-seo-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 24px;
  padding: 14px clamp(20px,5vw,64px) 20px;
  border-top: 1px solid var(--border);
}
.footer-seo-links a {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-seo-links a:hover { color: var(--amber); }
