/* ============================================
   GARUDA999 Landing Page – garuda999.games
   ============================================ */

:root {
  --gold: #008c95;
  --gold-light: #00d4df;
  --gold-dark: #006f78;
  --red: #0b5f95;
  --red-dark: #084b75;
  --bg-primary: #f4fbfc;
  --bg-secondary: #e8f7f8;
  --bg-card: #ffffff;
  --bg-card-hover: #f0fdff;
  --text-primary: #053040;
  --text-secondary: #315c68;
  --text-muted: #66818a;
  --border: rgba(0, 140, 149, 0.16);
  --border-hover: rgba(0, 140, 149, 0.38);
  --gradient-gold: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  --gradient-red: linear-gradient(135deg, #00d4df, var(--red));
  --shadow-gold: 0 10px 34px rgba(0, 140, 149, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --header-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Background effects */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 140, 149, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 140, 149, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow--gold {
  width: 600px;
  height: 600px;
  background: rgba(0, 212, 223, 0.16);
  top: -200px;
  right: -100px;
}

.bg-glow--red {
  width: 500px;
  height: 500px;
  background: rgba(11, 95, 149, 0.12);
  bottom: -150px;
  left: -100px;
}

/* Typography helpers */
.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-gold);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 140, 149, 0.28);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 140, 149, 0.42);
}

.btn--outline {
  background: transparent;
  border-color: var(--border-hover);
  color: var(--gold);
}

.btn--outline:hover {
  background: rgba(0, 140, 149, 0.08);
  border-color: var(--gold);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 83, 91, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.logo__icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.logo__image {
  width: 158px;
  height: auto;
  display: block;
}

.logo__image--footer {
  width: 172px;
}

.logo__accent {
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--gold);
}

.nav__link:hover::after {
  width: 100%;
}

.header__cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 80px;
}

.hero__inner {
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 140, 149, 0.10);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 40px;
}

.hero__subtitle strong {
  color: var(--text-primary);
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
}

.stat__suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.stat__label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* SEO showcase blocks */
.seo-showcase {
  position: relative;
  z-index: 1;
  padding: 84px 0 70px;
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.jackpot-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #e8fbfd);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-gold);
  margin-bottom: 28px;
}

.jackpot-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  margin: 12px 0 12px;
  color: var(--text-primary);
}

.jackpot-strip p {
  color: var(--text-secondary);
  max-width: 680px;
}

.jackpot-amount {
  min-width: 210px;
  text-align: center;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold), var(--red));
  color: #ffffff;
}

.jackpot-amount span {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.jackpot-amount strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}

.info-grid,
.steps-grid,
.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-tile,
.step-card,
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  box-shadow: 0 12px 34px rgba(0, 83, 91, 0.08);
}

.info-tile:hover,
.step-card:hover,
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
}

.info-tile__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(0, 140, 149, 0.10);
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.info-tile h3,
.step-card h3,
.game-card h3 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 8px;
}

.info-tile p,
.step-card p,
.game-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.step-card__number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  color: rgba(0, 140, 149, 0.26);
  margin-bottom: 10px;
}

.game-card {
  min-height: 132px;
  background:
    linear-gradient(135deg, rgba(0, 140, 149, 0.08), transparent),
    var(--bg-card);
}

.leaderboard-section {
  position: relative;
  z-index: 1;
  padding: 86px 0;
}

.leaderboard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 34px;
  align-items: center;
}

.leaderboard-layout h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin: 14px 0;
}

.leaderboard-layout p {
  color: var(--text-secondary);
  max-width: 640px;
}

.leaderboard-actions {
  justify-content: flex-start;
  margin: 28px 0 0;
}

.rank-list {
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-gold);
}

.rank-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

.rank-list div:last-child {
  border-bottom: 0;
}

.rank-list span {
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section--dark {
  background: var(--bg-secondary);
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 140, 149, 0.10);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section__desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about__content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about__content strong {
  color: var(--text-primary);
}

.about__list {
  margin-top: 24px;
}

.about__list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.about__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.feature-card__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition);
}

.feature-block:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.feature-block:hover::before {
  opacity: 1;
}

.feature-block__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(0, 140, 149, 0.20);
  margin-bottom: 16px;
}

.feature-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 140, 149, 0.12), rgba(11, 95, 149, 0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner__inner {
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-banner__text {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq__item[open] {
  border-color: var(--border-hover);
}

.faq__question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item[open] .faq__question::after {
  content: '−';
}

.faq__question:hover {
  color: var(--gold);
}

.faq__answer {
  padding: 0 24px 20px;
}

.faq__answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.contact-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-link {
  color: var(--gold);
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding-top: 60px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.logo--footer {
  margin-bottom: 16px;
}

.footer__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 360px;
}

.footer__links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Internal pages */
.page-hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 72px) 0 72px;
  background: linear-gradient(135deg, rgba(0, 140, 149, 0.11), rgba(11, 95, 149, 0.06));
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.breadcrumb a {
  color: var(--gold);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin: 14px 0 18px;
}

.page-hero__subtitle {
  color: var(--text-secondary);
  max-width: 760px;
  font-size: 1.08rem;
}

.page-hero__subtitle strong {
  color: var(--text-primary);
}

.page-hero__actions {
  justify-content: flex-start;
  margin-top: 8px;
}

.content-section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
}

.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.content-card--wide {
  min-height: 100%;
}

.content-card h2 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.content-card p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.content-card a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(0, 140, 149, 0.35);
  text-underline-offset: 3px;
}

.info-list li {
  padding: 10px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.info-list li:last-child {
  border-bottom: 0;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.updated-date {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 140, 149, 0.10);
  border: 1px solid var(--border);
  color: var(--gold) !important;
  font-size: 0.88rem;
  margin-bottom: 26px !important;
}

/* Animations on scroll */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .about {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid,
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jackpot-strip,
  .leaderboard-layout {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  body {
    padding-bottom: 0;
  }

  .container {
    padding: 0 16px;
  }

  .header__inner {
    gap: 12px;
    justify-content: space-between;
    min-width: 0;
  }

  .logo {
    min-width: 0;
  }

  .logo__image {
    width: 132px;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 14px 18px 18px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 34px rgba(0, 83, 91, 0.14);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    max-height: calc(100vh - var(--header-h) - 92px);
    overflow-y: auto;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__link {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
    font-size: 0.96rem;
    font-weight: 700;
  }

  .header__actions {
    display: none !important;
  }

  .header__cta {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 11px 14px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .hamburger {
    display: flex;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 40px) 0 52px;
  }

  .hero__badge {
    margin-bottom: 18px;
    font-size: 0.78rem;
    padding: 7px 14px;
  }

  .hero__title {
    font-size: clamp(2rem, 10vw, 2.8rem);
    margin-bottom: 18px;
  }

  .hero__subtitle {
    font-size: 0.98rem;
    margin-bottom: 28px;
  }

  .hero__actions {
    gap: 10px;
    margin-bottom: 34px;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
  }

  .stat {
    padding: 14px 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }

  .stat__number {
    font-size: 1.55rem;
  }

  .stat__suffix {
    font-size: 1rem;
  }

  .stat__label {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .section,
  .seo-showcase,
  .content-section,
  .leaderboard-section {
    padding: 56px 0;
  }

  .section__header {
    margin-bottom: 34px;
  }

  .section__title {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .section__desc,
  .page-hero__subtitle {
    font-size: 0.96rem;
  }

  .page-hero {
    padding: calc(var(--header-h) + 34px) 0 44px;
  }

  .page-hero__title {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .about__cards {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .info-grid,
  .steps-grid,
  .game-grid {
    grid-template-columns: 1fr;
  }

  .jackpot-strip {
    padding: 22px;
    gap: 20px;
  }

  .jackpot-strip h2 {
    font-size: 1.42rem;
  }

  .jackpot-amount {
    width: 100%;
    min-width: 0;
  }

  .jackpot-amount strong {
    font-size: 2.35rem;
  }

  .info-tile,
  .step-card,
  .game-card,
  .feature-block,
  .feature-card,
  .contact-card,
  .content-card {
    padding: 22px;
    border-radius: 16px;
  }

  .leaderboard-layout {
    gap: 24px;
  }

  .leaderboard-actions {
    justify-content: center;
    margin-top: 22px;
  }

  .rank-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  body {
    padding-bottom: 0;
  }

  .header__inner {
    gap: 8px;
  }

  .logo__image {
    width: 118px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn--lg {
    width: 100%;
    max-width: none;
    padding: 14px 18px;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 12px;
  }

  .stat__label {
    margin-top: 0;
    text-align: right;
  }

  .jackpot-amount {
    padding: 18px;
  }

  .rank-list {
    padding: 12px;
  }

  .footer {
    padding-top: 44px;
  }
}
