/* ==================== VARIABLES ==================== */
:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #0f1525;
  --bg-card: #141b2d;
  --bg-card-hover: #1a2340;
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #6b7a99;
  --gold: #f0c040;
  --gold-dark: #c89b20;
  --gold-light: #ffd666;
  --blue: #1e40af;
  --blue-light: #3b82f6;
  --red: #dc2626;
  --border: rgba(255,255,255,0.08);
  --border-gold: rgba(240,192,64,0.3);
  --shadow: 0 4px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 24px rgba(240,192,64,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}



body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

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

.text-gold { color: var(--gold) !important; font-style: italic; }

/* ==================== HEADER ==================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

#header.scrolled {
  background: rgba(10, 14, 26, 0.95);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.logo-icon {
  color: var(--gold);
  font-size: 1.6rem;
  filter: drop-shadow(0 0 8px rgba(240,192,64,0.4));
}

.logo-text { color: #fff; }
.logo-accent { color: var(--gold); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-desktop a {
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-desktop a:hover {
  color: var(--gold);
  background: rgba(240,192,64,0.08);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: rgba(10, 14, 26, 0.98);
  border-top: 1px solid var(--border);
}

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

.mobile-menu a {
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

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

.mobile-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 24px !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000 !important;
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
  justify-content: center;
  border: none !important;
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(240,192,64,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(30,64,175,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(240,192,64,0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: lighten;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240,192,64,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroPulse 4s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(240,192,64,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease-out;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 4px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-star { color: #fff; }
.hero-game {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(240,192,64,0.3);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ==================== BUTTONS ==================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-primary:active { transform: translateY(0); }

.btn-primary.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.btn-primary.btn-large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240,192,64,0.05);
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}

.section-title.light { color: #fff; }
.section-title.left { text-align: left; }

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-light), var(--gold));
  margin: 0 auto 16px;
  border-radius: 4px;
}

.section-line.gold { background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }
.section-line.left { margin-left: 0; }

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-subtitle.light { color: rgba(255,255,255,0.7); }

/* ==================== WHY US ==================== */
.why-us {
  background: var(--bg-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-item:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.why-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.why-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.why-text strong { color: #fff; }
.why-text em { color: var(--gold); font-style: italic; }

.why-cta { text-align: center; }

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ==================== OUR GAMES ==================== */
.our-games {
  background: var(--bg-primary);
}

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

.game-provider {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.game-provider:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.game-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  min-height: 100px;
}

.provider-name {
  text-align: center;
  line-height: 1.3;
  user-select: none;
}

@media (max-width: 768px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .game-logo-wrap { padding: 20px 12px; min-height: 80px; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==================== LIVE CASINO ==================== */
.live-casino {
  background: var(--bg-secondary);
  overflow: hidden;
}

.live-casino-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(240,192,64,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(30,64,175,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.live-casino-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/live-casino.webp') center center / cover no-repeat;
  opacity: 0.1;
  mix-blend-mode: lighten;
}

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

.live-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.live-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.live-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240,192,64,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold);
}

.live-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.live-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.live-cta { text-align: center; }

@media (max-width: 768px) {
  .live-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .live-grid { grid-template-columns: 1fr; }
}

/* ==================== WE OFFER ==================== */
.we-offer {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.we-offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/jackpot-bg.webp') center center / cover no-repeat;
  opacity: 0.06;
  mix-blend-mode: lighten;
  pointer-events: none;
}

.we-offer .container {
  position: relative;
  z-index: 2;
}

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

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  opacity: 0;
  transition: var(--transition);
}

.offer-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.offer-card:hover::before { opacity: 1; }

.offer-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
}

.jackpot-icon {
  background: linear-gradient(135deg, rgba(240,192,64,0.15), rgba(240,192,64,0.05));
  color: var(--gold);
}

.deposit-icon {
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(59,130,246,0.05));
  color: var(--blue-light);
}

.cashback-icon {
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05));
  color: #10b981;
}

.offer-badge {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-top: 4px;
}

.offer-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}

.offer-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .offer-grid { grid-template-columns: 1fr; }
}

/* ==================== MOBILE / iOS & Android ==================== */
.mobile-section {
  background: var(--bg-secondary);
  overflow: hidden;
}

.mobile-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.mobile-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.mobile-devices-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 16px 48px rgba(0,0,0,0.5));
  transition: var(--transition);
}

.mobile-devices-img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 20px 56px rgba(240,192,64,0.15));
}

.mobile-content h2 {
  margin-bottom: 8px;
}

.mobile-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.mobile-features {
  list-style: none;
  margin-bottom: 24px;
}

.mobile-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.mobile-features li::before {
  content: '○';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.mobile-highlight {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 24px;
}

.mobile-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.spec-check {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(240,192,64,0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  flex-shrink: 0;
}

.spec-item span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .mobile-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mobile-visual { min-height: 300px; }
}

/* ==================== KEY FEATURES ==================== */
.key-features {
  overflow: hidden;
  background: var(--bg-primary);
}

.features-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(220,38,38,0.06) 0%, transparent 50%),
    linear-gradient(225deg, rgba(240,192,64,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.features-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/jackpot-bg.webp') center center / cover no-repeat;
  opacity: 0.08;
  mix-blend-mode: lighten;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.feature-card {
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(240,192,64,0.03);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240,192,64,0.05);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-line {
  display: none;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== CTA Section ==================== */
.cta-section {
  background: var(--bg-secondary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-casino.webp') center center / cover no-repeat;
  opacity: 0.06;
  mix-blend-mode: lighten;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-box {
  text-align: center;
  padding: 64px 40px;
  background: linear-gradient(135deg, var(--bg-card), rgba(240,192,64,0.05));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(240,192,64,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-box .btn-primary { position: relative; }

/* ==================== FOOTER ==================== */
footer {
  background: #060a14;
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: #fff;
}

.footer-col a,
.footer-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 6px 0;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--gold); }
.footer-col a svg { flex-shrink: 0; }
.footer-address svg { flex-shrink: 0; }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== POLICY PAGES ==================== */
.policy-page {
  padding: 120px 0 80px;
  background: var(--bg-primary);
  min-height: 80vh;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.policy-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.policy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 36px;
  margin-bottom: 12px;
}

.policy-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-content ul {
  list-style: none;
  margin-bottom: 16px;
  padding-left: 0;
}

.policy-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.policy-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.policy-content a {
  color: var(--gold);
  transition: var(--transition);
}

.policy-content a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer-bottom a {
  color: var(--text-muted);
  transition: var(--transition);
}

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

/* ==================== GENERAL RESPONSIVE ==================== */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-title { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 16px 60px; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 1.5rem; }
  .container { padding: 0 16px; }
}
