*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #f3c600;
  --yellow-light: #ffe066;
  --black: #000000;
  --dark: #0a0a0a;
  --card-dark: #111111;
  --card-bg: #1a1a1a;
  --text-white: #ffffff;
  --text-muted: #aaaaaa;
  --red-badge: #e02020;
  --green: #4caf50;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: var(--text-white);
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#header.transparent { background: transparent; }
#header.solid {
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.header-logo img {
  height: 42px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.header-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-white);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--yellow); }
.header-nav a.active { color: var(--yellow); }

.header-actions {
  display: flex;
  gap: 12px;
}
.btn-login {
  padding: 9px 24px;
  border: 2px solid var(--yellow);
  border-radius: 6px;
  background: transparent;
  color: var(--yellow);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-login:hover { background: var(--yellow); color: var(--black); }
.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 24px;
  border: 2px solid #25D366;
  border-radius: 6px;
  background: #25D366;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.btn-whatsapp-header:hover { opacity: 0.88; }

.btn-register {
  padding: 9px 24px;
  border: 2px solid var(--yellow);
  border-radius: 6px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-register:hover { opacity: 0.88; }

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slides {
  display: flex;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.77,0,0.18,1);
}
.hero-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}
.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.341) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}

/* Thumbnail strip */
.hero-thumbs {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.25s, transform 0.25s;
  opacity: 0.6;
}
.hero-thumb.active { border-color: var(--yellow); opacity: 1; transform: scale(1.08); }
.hero-thumb:hover { opacity: 0.9; }
.hero-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Swipe-up indicator */
.swipe-up {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.swipe-up-arrow {
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
  animation: pulse-border 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes pulse-border {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 10;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.hero-dot.active { background: var(--yellow); transform: scale(1.3); }

/* ═══════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════ */
.section {
  padding: 80px 220px;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 36px;
  position: relative;
}
.section-title span { color: var(--yellow); }
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-top: 10px;
}

/* ═══════════════════════════════════════
   NEW GAMES
═══════════════════════════════════════ */
#new-games { background: #0d0d0d; }

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

.game-card {
  background: var(--card-bg);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 0 1px var(--yellow);
}

.game-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.game-card:hover .game-card-img img { transform: scale(1.07); }

.badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red-badge);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.badge-date {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.92);
  color: #333;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
}
.badge-date::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f3c600;
  display: inline-block;
}

.game-card-info {
  padding: 14px 16px 16px;
}
.game-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.game-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px 4px;
  margin-bottom: 10px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.stat-value {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 3px;
}
.stat-value .icon-bolt { color: var(--yellow); font-size: 11px; }
.stat-value .icon-rtp { color: var(--green); font-size: 10px; }
.stat-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 400;
}

.game-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 4px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 10px;
  margin-top: 6px;
}
.meta-item { display: flex; flex-direction: column; gap: 1px; }
.meta-value { font-size: 12px; font-weight: 600; color: #fff; }
.meta-label { font-size: 10px; color: var(--text-muted); }

/* View all button */
.view-all-wrap { text-align: center; margin-top: 44px; }
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 40px;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  background: transparent;
  color: var(--yellow);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-view-all:hover { background: var(--yellow); color: var(--black); }
.btn-view-all svg { transition: transform 0.2s; }
.btn-view-all:hover svg { transform: translateX(4px); }

/* ═══════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════ */
#about {
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
  padding: 100px 220px;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-text h2 span { color: var(--yellow); }
.about-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.about-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 20px;
}
.about-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--yellow);
}
.about-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-img {
  width: 50%;
  max-width: 100%;
  border-radius: 16px;
  display: block;
}

/* ═══════════════════════════════════════
   DOWNLOAD SECTION
═══════════════════════════════════════ */
#download {
  background: url('/assets/download-banner.png') center/cover no-repeat;
  padding: 100px 220px;
  text-align: center;
  position: relative;
}
#download::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}
#download .download-inner {
  position: relative;
  z-index: 1;
}
.download-inner { max-width: 700px; margin: 0 auto; }
.download-inner h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 16px;
}
.download-inner h2 span { color: var(--yellow); }
.download-inner p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  line-height: 1.7;
}
.download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-download:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-download.outline {
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
}
.btn-download.outline:hover { background: var(--yellow); color: var(--black); }
.btn-download svg { width: 22px; height: 22px; fill: currentColor; }

/* ═══════════════════════════════════════
   SOCIAL / CTA SECTION
═══════════════════════════════════════ */
#social {
  background: linear-gradient(135deg, #c8860a 0%, #f3a000 40%, #e05800 100%);
  padding: 64px 220px;
}
.social-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.social-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  letter-spacing: 0.08em;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-transform: uppercase;
}
.social-links {
  display: flex;
  gap: 0;
  position: relative;
  z-index: 2;
  width: 100%;
}
.social-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 10px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.social-link:last-child { border-right: none; }
.social-link:hover { transform: scale(1.08); }
.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon svg { width: 40px; height: 40px; fill: rgba(255,255,255,0.9); }
.social-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#footer {
  background: #050505;
  padding: 56px 220px 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--yellow); }

.footer-responsible {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-responsible strong { color: rgba(255,255,255,0.75); }
.responsible-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.responsible-badge span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--yellow); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; fill: var(--black); }

/* Hide hamburger & mobile CTA on desktop */
.mobile-menu-btn { display: none; }
.mobile-hero-cta { display: none; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-visual { display: flex; order: -1; }
  .about-logo-img { max-width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section-title { padding-left: 24px; padding-right: 24px; }

  /* ── Header: always solid black, logo centered ── */
  #header {
    padding: 14px 20px;
    background: var(--black) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.8);
  }
  #header.transparent {
    background: var(--black) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.8);
  }
  .header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .header-logo img { height: 32px; }
  .header-actions { display: none; }

  /* ── Mobile nav (hamburger) ── */
  .header-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .header-nav.open { display: flex; }
  .header-nav a { font-size: 18px; }

  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    z-index: 1001;
    margin-left: auto;
  }
  .mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
  .mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── Hero: offset fixed header ── */
  #hero { padding-top: 60px; }

  /* ── Hero: hide thumbs ── */
  .hero-thumbs { display: none; }
  .hero-slide img {
    width: 100%;
    height: auto;
  }
  .hero-dots { bottom: 16px; right: 50%; transform: translateX(50%); }

  /* ── Mobile CTA buttons (WhatsApp + Register) ── */
  .mobile-hero-cta {
    display: flex;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: var(--black);
  }
  .btn-whatsapp,
  .btn-register-cta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
  }
  .btn-whatsapp {
    background: #25D366;
    color: #fff;
  }
  .btn-whatsapp svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  .btn-register-cta {
    background: var(--black);
    color: var(--yellow);
    border: 2px solid var(--yellow);
  }

  /* ── Games carousel ── */
  #new-games { overflow: hidden; }
  .games-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 12px 24px 12px;
    scrollbar-width: none;
  }
  .games-grid::-webkit-scrollbar { display: none; }
  .game-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: center;
  }

  /* ── Sections ── */
  .section { padding: 60px 0px; }
  #about, #download, #social { padding: 60px 24px; }
  #footer { padding: 40px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .social-name { font-size: 10px; }

}

/* ═══════════════════════════════════════
   HOMEPAGE CONTENT SECTIONS
═══════════════════════════════════════ */

/* ─── Shared base ─── */
.hp-intro {
  padding: 64px 220px;
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.hp-section {
  padding: 72px 220px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.hp-section--alt { background: #060606; }

/* ─── H1 block ─── */
.hp-intro h1 {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
}
.hp-intro > p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 12px;
  max-width: 800px;
}
/* ─── Quick Guide ─── */
.hp-quick-guide {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
}
.hp-quick-guide-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.hp-quick-devices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hp-quick-device {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px 16px;
}
.hp-quick-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hp-quick-icon.android { background: rgba(164,235,0,0.1); color: #a4eb00; }
.hp-quick-icon.ios     { background: rgba(90,200,250,0.1); color: #5ac8fa; }
.hp-quick-icon.desktop { background: rgba(100,180,255,0.1); color: #64b4ff; }
.hp-quick-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  min-width: 52px;
}
.hp-quick-arrow {
  font-size: 15px;
  color: var(--yellow);
  flex-shrink: 0;
}
.hp-quick-method {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ─── Section headings ─── */
.hp-section h2 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 14px;
  position: relative;
}
.hp-section h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

/* ─── Lead text ─── */
.hp-lead {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 840px;
}

/* ─── Bullet list ─── */
.hp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.hp-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.hp-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(243,198,0,0.6);
}

/* ─── 2-col user groups ─── */
.hp-cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
.hp-user-group {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 22px 24px;
}
.hp-user-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}

/* ─── Card row ─── */
.hp-card-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
}
.hp-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.hp-card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

/* ─── Access method grid (2-col checkmarks) ─── */
.hp-method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}
.hp-method-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px 16px;
}
.hp-method-check {
  color: var(--yellow);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}
.hp-method-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.hp-method-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2px;
}

/* ─── Unified 3-box row ─── */
.hp-unified-box {
  display: flex;
  gap: 12px;
  margin: 16px 0;
}
.hp-unified-item {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid rgba(243,198,0,0.18);
  border-radius: 10px;
  padding: 18px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.hp-unified-num {
  width: 28px; height: 28px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}

/* ─── Steps ─── */
.hp-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.hp-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px 20px;
}
.hp-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hp-step-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ─── Note box ─── */
.hp-note {
  background: rgba(243,198,0,0.04);
  border: 1px solid rgba(243,198,0,0.15);
  border-left: 3px solid rgba(243,198,0,0.45);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 16px 0;
}
.hp-note a { color: var(--yellow); text-decoration: none; }

/* ─── Search tags ─── */
.hp-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.hp-search-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ─── FAQ accordion ─── */
.hp-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.hp-faq-item {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}
.hp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: left;
  gap: 12px;
}
.hp-faq-q svg { flex-shrink: 0; color: var(--yellow); transition: transform 0.3s; }
.hp-faq-item.open .hp-faq-q svg { transform: rotate(180deg); }
.hp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.hp-faq-item.open .hp-faq-a { max-height: 200px; }
.hp-faq-a p {
  padding: 0 20px 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 0;
}

/* ─── Final CTA section ─── */
.hp-cta-section {
  background: url('/assets/banner3.webp') center/cover no-repeat;
  position: relative;
}
.hp-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
}
.hp-cta-section .hp-section > * {
  position: relative;
  z-index: 1;
}
.hp-cta-section h2,
.hp-cta-section .hp-lead {
  position: relative;
  z-index: 1;
}
/* ─── Responsive 1200px ─── */
@media (max-width: 1200px) {
  .hp-intro,
  .hp-section { padding: 64px 60px; }
}

/* ─── Responsive 768px ─── */
@media (max-width: 768px) {
  .hp-intro,
  .hp-section { padding: 48px 24px; }
  .hp-intro h1 { font-size: 22px; }
  .hp-section h2 { font-size: 20px; }
  .hp-quick-devices { grid-template-columns: 1fr; }
  .hp-cols-2 { grid-template-columns: 1fr; }
  .hp-method-grid { grid-template-columns: 1fr; }
  .hp-unified-box { flex-direction: column; }

}
