/* ============================================================
   PLAYAMO CASINO AZ — MAIN STYLES
   main.css
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Rajdhani:wght@400;500;600;700&family=Exo+2:wght@300;400;600;700;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --gold-primary:    #FFD700;
  --gold-secondary:  #FFA500;
  --gold-dark:       #8B6914;
  --purple-deep:     #0d0220;
  --purple-mid:      #1a0533;
  --purple-light:    #2d0a55;
  --purple-accent:   #6a2aaa;
  --purple-soft:     #b89aff;
  --white:           #ffffff;
  --white-dim:       rgba(255,255,255,0.85);
  --white-mute:      rgba(255,255,255,0.55);
  --overlay-dark:    rgba(13,2,32,0.92);
  --text-primary:    #f0e8ff;
  --text-secondary:  #b89aff;
  --btn-primary-bg:  linear-gradient(135deg, #FF8C00 0%, #FFD700 100%);
  --btn-secondary-bg: linear-gradient(135deg, #6a2aaa 0%, #2d0a55 100%);
  --border-gold:     rgba(255,215,0,0.35);
  --shadow-gold:     0 0 20px rgba(255,215,0,0.25);
  --shadow-purple:   0 8px 32px rgba(106,42,170,0.4);
  --radius-sm:       8px;
  --radius-md:       14px;
  --radius-lg:       24px;
  --radius-xl:       40px;
  --transition-fast: 0.2s ease;
  --transition-mid:  0.35s cubic-bezier(.4,0,.2,1);
  --transition-slow: 0.6s cubic-bezier(.4,0,.2,1);
  --font-display:    'Cinzel', Georgia, serif;
  --font-ui:         'Rajdhani', 'Exo 2', sans-serif;
  --font-body:       'Exo 2', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--purple-deep);
  background-image:
    url('../images/backgrounds/bg-pattern1301.svg'),
    radial-gradient(ellipse at 20% 0%, #2d0a55 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, #1a0533 0%, transparent 50%);
  background-size: 400px 400px, cover, cover;
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

/* --- Scrollbar Styling --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--purple-deep); }
::-webkit-scrollbar-thumb { background: var(--purple-accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-primary); }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 2, 32, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 2px 30px rgba(106,42,170,0.3);
  transition: background var(--transition-mid), box-shadow var(--transition-mid);
}

#header.scrolled {
  background: rgba(13, 2, 32, 0.99);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

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

/* Logo */
.header-logo {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.header-logo:hover { transform: scale(1.04); }
.header-logo img {
  height: 48px;
  width: auto;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white-dim);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--transition-mid);
}

.nav-link:hover {
  color: var(--gold-primary);
  background: rgba(255,215,0,0.07);
}

.nav-link:hover::after { width: calc(100% - 32px); }
.nav-link.active { color: var(--gold-primary); }
.nav-link.active::after { width: calc(100% - 32px); }

/* Header Auth Buttons */
.header-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  transition: background var(--transition-fast);
}
.hamburger:hover { background: rgba(255,255,255,0.08); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white-dim);
  border-radius: 2px;
  transition: all var(--transition-mid);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: rgba(13,2,32,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  padding: 24px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform var(--transition-mid);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu .nav-link {
  font-size: 18px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,215,0,0.12);
  background: rgba(26, 5, 51, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}
.mobile-menu .header-auth {
  margin-top: 16px;
  flex-direction: column;
}
.mobile-menu .header-auth .btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 14px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
  border-radius: inherit;
}

.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--purple-deep);
  box-shadow: 0 4px 20px rgba(255,165,0,0.4);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(255,165,0,0.6);
  filter: brightness(1.08);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-primary);
  border: 1.5px solid var(--gold-primary);
  box-shadow: none;
}
.btn-secondary:hover {
  background: rgba(255,215,0,0.1);
  box-shadow: var(--shadow-gold);
}

.btn-outline-purple {
  background: transparent;
  color: var(--purple-soft);
  border: 1.5px solid var(--purple-accent);
}
.btn-outline-purple:hover {
  background: rgba(106,42,170,0.2);
  border-color: var(--purple-soft);
}

.btn-lg {
  padding: 14px 36px;
  font-size: 16px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(45,10,85,0.9) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(106,42,170,0.4) 0%, transparent 50%),
    linear-gradient(180deg, var(--purple-deep) 0%, #1a0533 50%, #0a011a 100%);
}

/* Animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-primary);
  animation: floatParticle linear infinite;
  opacity: 0;
}

@keyframes floatParticle {
  0%   { opacity: 0; transform: translateY(100%) scale(0); }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1.5); }
}

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

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,165,0,0.15);
  border: 1px solid rgba(255,165,0,0.4);
  border-radius: var(--radius-xl);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-secondary);
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  animation: fadeSlideUp 0.7s ease 0.1s both;
}

.hero-title .gold-text {
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeSlideUp 0.8s ease 0.2s both;
}

.hero-bonus-box {
  background: linear-gradient(135deg, rgba(45,10,85,0.8), rgba(26,5,51,0.9));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.9s ease 0.3s both;
  box-shadow: var(--shadow-gold);
}

.hero-bonus-amount {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-bonus-desc {
  font-size: 14px;
  color: var(--white-mute);
}

.hero-bonus-freespins {
  font-size: 20px;
  font-weight: 700;
  color: var(--purple-soft);
  margin-top: 8px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideUp 1s ease 0.4s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  animation: fadeSlideUp 1.1s ease 0.5s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--white-mute);
}

.trust-item .trust-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
}

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeSlideUp 0.8s ease 0.3s both;
}

.hero-banner-img {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(106,42,170,0.5), 0 0 0 1px var(--border-gold);
}

.hero-floating-card {
  position: absolute;
  background: rgba(13,2,32,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  animation: float 4s ease-in-out infinite;
  box-shadow: var(--shadow-purple);
}

.hero-floating-card.card-top {
  top: -20px;
  right: -20px;
  animation-delay: -2s;
}

.hero-floating-card.card-bottom {
  bottom: 20px;
  left: -20px;
}

.floating-card-label {
  font-size: 11px;
  color: var(--white-mute);
  letter-spacing: 0.5px;
}

.floating-card-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-primary);
  margin-top: 2px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-badge {
  display: inline-block;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: var(--radius-xl);
  padding: 5px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-secondary);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.section-title .gold-text {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  border-radius: 3px;
  margin: 16px auto 0;
}

/* ============================================================
   BRAND DESCRIPTION SECTION
   ============================================================ */
#brand {
  background: linear-gradient(180deg, transparent, rgba(26,5,51,0.5), transparent);
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.brand-text p {
  font-size: 16px;
  color: var(--white-dim);
  line-height: 1.85;
  margin-bottom: 20px;
}

.brand-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.brand-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(45,10,85,0.4);
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.brand-feature-item:hover {
  border-color: rgba(255,215,0,0.4);
  transform: translateY(-2px);
}

.brand-feature-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.brand-feature-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--white-dim);
}

.brand-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(45,10,85,0.6), rgba(26,5,51,0.8));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-purple);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold), var(--shadow-purple);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--white-mute);
  letter-spacing: 0.5px;
}

/* ============================================================
   BONUS TABLE SECTION
   ============================================================ */
#bonuses {
  padding: 80px 24px;
  background: rgba(26,5,51,0.3);
}

.bonus-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-purple);
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 14px;
  min-width: 640px;
}

.bonus-table thead tr {
  background: linear-gradient(135deg, #2d0a55, #1a0533);
}

.bonus-table th {
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  border-bottom: 2px solid var(--border-gold);
}

.bonus-table tbody tr {
  background: rgba(13,2,32,0.6);
  border-bottom: 1px solid rgba(255,215,0,0.07);
  transition: background var(--transition-fast);
}

.bonus-table tbody tr:hover {
  background: rgba(45,10,85,0.5);
}

.bonus-table td {
  padding: 16px 20px;
  color: var(--white-dim);
  vertical-align: middle;
}

.bonus-table td:first-child {
  font-weight: 600;
  color: var(--white);
}

.bonus-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.bonus-badge.hot {
  background: rgba(255,100,0,0.2);
  border: 1px solid rgba(255,100,0,0.5);
  color: #ff8844;
}

.bonus-badge.new {
  background: rgba(0,200,100,0.15);
  border: 1px solid rgba(0,200,100,0.4);
  color: #44ffaa;
}

.bonus-badge.popular {
  background: rgba(184,154,255,0.15);
  border: 1px solid rgba(184,154,255,0.4);
  color: var(--purple-soft);
}

.table-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: var(--radius-xl);
  background: var(--btn-primary-bg);
  color: var(--purple-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}

.table-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,165,0,0.5);
}

/* ============================================================
   GAMES SECTION
   ============================================================ */
#games {
  padding: 80px 24px;
}

.games-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: var(--radius-xl);
  background: rgba(45,10,85,0.5);
  border: 1px solid rgba(184,154,255,0.2);
  color: var(--white-mute);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #2d0a55, #1a0533);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

/* Games slider */
.games-slider-wrap {
  position: relative;
  overflow: hidden;
}

.games-slider {
  display: flex;
  gap: 20px;
  transition: transform var(--transition-slow);
  will-change: transform;
}

.game-card {
  flex: 0 0 calc(20% - 16px);
  min-width: 200px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-purple);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
  border: 1px solid rgba(255,215,0,0.1);
}

.game-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 60px rgba(106,42,170,0.6), 0 0 0 1px var(--border-gold);
  z-index: 2;
}

.game-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.game-card:hover .game-card-img {
  transform: scale(1.08);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,2,32,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition-mid);
}

.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.game-card-provider {
  font-size: 11px;
  color: var(--white-mute);
  margin-bottom: 12px;
}

.game-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  border-radius: var(--radius-sm);
  background: var(--btn-primary-bg);
  color: var(--purple-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.game-card-btn:hover {
  box-shadow: 0 6px 24px rgba(255,165,0,0.5);
  transform: translateY(-1px);
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(45,10,85,0.6);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 18px;
}

.slider-btn:hover {
  background: rgba(255,215,0,0.15);
  box-shadow: var(--shadow-gold);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(184,154,255,0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--gold-primary);
  box-shadow: 0 0 8px rgba(255,215,0,0.5);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   BANNER SECTION
   ============================================================ */
#promo {
  padding: 0 24px 80px;
}

.promo-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(106,42,170,0.5);
  border: 1px solid var(--border-gold);
}

.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.promo-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
}

/* ============================================================
   PAYMENT SECTION
   ============================================================ */
#payments {
  padding: 60px 24px;
  background: rgba(26,5,51,0.3);
}

.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.payment-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45,10,85,0.4);
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  min-width: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white-dim);
  transition: all var(--transition-fast);
}

.payment-item:hover {
  border-color: var(--border-gold);
  background: rgba(45,10,85,0.6);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: rgba(10,1,25,0.98);
  border-top: 1px solid var(--border-gold);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

.footer-brand {}
.footer-brand-logo { margin-bottom: 16px; }
.footer-brand-logo img { height: 42px; }

.footer-desc {
  font-size: 14px;
  color: var(--white-mute);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(45,10,85,0.6);
  border: 1px solid rgba(184,154,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-mute);
  font-size: 16px;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: rgba(106,42,170,0.4);
  border-color: var(--purple-soft);
  color: var(--purple-soft);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: var(--white-mute);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-link:hover {
  color: var(--white-dim);
  padding-left: 6px;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-link {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition-fast);
}

.footer-legal-link:hover { color: var(--white-mute); }

.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .brand-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .game-card { flex: 0 0 calc(25% - 15px); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-auth { display: none; }
  .hamburger { display: flex; }

  #hero { padding: 40px 20px; min-height: auto; }
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 16px; }
  .hero-bonus-amount { font-size: 32px; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }

  .section { padding: 50px 20px; }
  .section-title { font-size: 24px; }

  .brand-features { grid-template-columns: 1fr; }
  .brand-stats { grid-template-columns: 1fr 1fr; }

  .game-card { flex: 0 0 calc(50% - 10px); }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { gap: 12px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .header-inner { padding: 0 16px; height: 64px; }
  .header-logo img { height: 38px; }

  .game-card { flex: 0 0 calc(100% - 0px); max-width: 280px; }
  .games-slider { flex-direction: row; }

  .brand-stats { grid-template-columns: 1fr; }

  .promo-banner-overlay { padding: 20px; }

  .bonus-table { font-size: 13px; }
  .bonus-table th, .bonus-table td { padding: 12px 14px; }
}
