/* ============================================
   DIVASPIN CASINO - GERMAN LANDING PAGE
   Premium Casino Theme with Glamour Aesthetic
   ============================================ */

/* CSS Variables */
:root {
  /* Primary Colors - Gold & Purple Theme */
  --primary: #d4af37;
  --primary-light: #f4d03f;
  --primary-dark: #b8960c;
  --secondary: #9b59b6;
  --secondary-light: #bb8fce;
  --secondary-dark: #7d3c98;
  
  /* Background Colors */
  --bg-dark: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a25;
  --bg-elevated: #1e1e2a;
  --bg-gradient: linear-gradient(135deg, #0a0a0f 0%, #1a1025 50%, #0a0a0f 100%);
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #b0b0c0;
  --text-muted: #6a6a7a;
  
  /* Accent Colors */
  --success: #2ecc71;
  --warning: #f39c12;
  --danger: #e74c3c;
  --info: #3498db;
  
  /* Borders */
  --border-color: rgba(212, 175, 55, 0.2);
  --border-light: rgba(255, 255, 255, 0.1);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Layout */
  --sidebar-width: 260px;
  --header-height: 70px;
  --content-max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-dark);
  background-image: var(--bg-gradient);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--primary-light);
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input {
  font-family: inherit;
  border: none;
  outline: none;
}

/* ============================================
   HEADER
   ============================================ */
.gz-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
}

.gz-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--space-lg);
  max-width: 1600px;
  margin: 0 auto;
}

.gz-header__left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.gz-header__right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

/* Menu Toggle */
.gz-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}

.gz-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-base);
}

.gz-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.gz-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.gz-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Logo */
.gz-logo img {
  height: 40px;
  width: auto;
}

/* Search Box */
.gz-search-box {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: var(--space-sm) var(--space-md);
  transition: var(--transition-base);
}

.gz-search-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.gz-search-box__icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.gz-search-box__input {
  background: transparent;
  color: var(--text-primary);
  width: 180px;
  font-size: 14px;
}

.gz-search-box__input::placeholder {
  color: var(--text-muted);
}

/* Header Buttons */
.gz-header__buttons {
  display: flex;
  gap: var(--space-sm);
}

@media (max-width: 768px) {
  .gz-search-box,
  .gz-header__buttons {
    display: none;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.gz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gz-btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.gz-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
  color: var(--bg-dark);
}

.gz-btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.gz-btn--outline:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

.gz-btn--outline-light {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.gz-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.gz-btn--large {
  padding: 16px 36px;
  font-size: 16px;
}

/* ============================================
   SIDEBAR
   ============================================ */
.gz-sidebar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: var(--sidebar-width);
  height: calc(100vh - var(--header-height));
  background: var(--bg-card);
  border-right: 1px solid var(--border-color);
  overflow-y: auto;
  z-index: 900;
  transform: translateX(-100%);
  transition: transform var(--transition-base);
}

.gz-sidebar.active {
  transform: translateX(0);
}

.gz-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 899;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.gz-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1200px) {
  .gz-sidebar {
    transform: translateX(0);
  }
  
  .gz-sidebar-overlay {
    display: none;
  }
}

/* Navigation */
.gz-nav {
  padding: var(--space-lg);
}

.gz-nav__section {
  margin-bottom: var(--space-lg);
}

.gz-nav__divider {
  height: 1px;
  background: var(--border-light);
  margin: var(--space-lg) 0;
}

.gz-nav__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  margin-bottom: var(--space-xs);
}

.gz-nav__item:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.gz-nav__item--featured {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
  color: var(--primary);
}

.gz-nav__item--jackpot {
  background: rgba(231, 76, 60, 0.1);
}

.gz-nav__item--promo {
  background: rgba(46, 204, 113, 0.1);
}

.gz-nav__icon {
  font-size: 20px;
}

/* Badges */
.gz-badge {
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.gz-badge--hot {
  background: var(--danger);
  color: white;
}

.gz-badge--new {
  background: var(--success);
  color: white;
}

/* Sidebar Footer */
.gz-sidebar__footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.gz-sidebar__info {
  font-size: 12px;
  color: var(--text-muted);
}

.gz-responsible a {
  color: var(--text-muted);
}

.gz-license {
  margin-top: var(--space-xs);
}

/* ============================================
   MAIN WRAPPER
   ============================================ */
.gz-wrapper {
  padding-top: var(--header-height);
  min-height: 100vh;
}

@media (min-width: 1200px) {
  .gz-wrapper {
    padding-left: var(--sidebar-width);
  }
}

.gz-main {
  width: 100%;
}

.gz-content {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .gz-content {
    padding: var(--space-md);
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.gz-hero {
  position: relative;
  padding: var(--space-3xl) var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
}

.gz-hero__bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(155, 89, 182, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  z-index: 0;
}

.gz-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.gz-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.gz-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 14px;
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.gz-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 50%, var(--text-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gz-hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.gz-hero__offer {
  display: inline-flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(155, 89, 182, 0.2) 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-2xl);
  margin-bottom: var(--space-xl);
}

.gz-hero__offer-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gz-hero__offer-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
}

.gz-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--bg-dark);
  padding: 18px 40px;
  border-radius: var(--radius-full);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-base);
  margin-bottom: var(--space-xl);
}

.gz-hero__cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
  color: var(--bg-dark);
}

.gz-hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.gz-trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.05);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--text-secondary);
}

.gz-trust-badge__icon {
  font-size: 16px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.gz-stats {
  margin-bottom: var(--space-2xl);
}

.gz-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.gz-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  transition: var(--transition-base);
}

.gz-stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.gz-stat-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.gz-stat-card__label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.gz-section {
  margin-bottom: var(--space-3xl);
}

.gz-section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.gz-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.gz-section__subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   STORY SECTION
   ============================================ */
.gz-story__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 900px) {
  .gz-story__content {
    grid-template-columns: 2fr 1fr;
  }
}

.gz-story__text {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.gz-story__text p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.gz-story__text p:last-child {
  margin-bottom: 0;
}

.gz-story__stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.gz-story-stat {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
}

.gz-story-stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.gz-story-stat__label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: var(--space-sm);
}

/* ============================================
   DIFFERENCE SECTION
   ============================================ */
.gz-difference__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.gz-diff-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition-base);
}

.gz-diff-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.gz-diff-card__comparison {
  margin-bottom: var(--space-lg);
  font-size: 13px;
}

.gz-diff-card__old {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  padding: var(--space-sm);
  background: rgba(231, 76, 60, 0.1);
  border-radius: var(--radius-sm);
}

.gz-diff-card__new {
  color: var(--success);
  padding: var(--space-sm);
  background: rgba(46, 204, 113, 0.1);
  border-radius: var(--radius-sm);
}

.gz-diff-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.gz-diff-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================
   WELCOME SECTION
   ============================================ */
.gz-welcome__journey {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.gz-welcome-step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.gz-welcome-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.gz-welcome-step__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--bg-dark);
  font-size: 12px;
  font-weight: 700;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.gz-welcome-step__content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.gz-welcome-step__bonus {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.gz-welcome-step__extra {
  font-size: 14px;
  color: var(--secondary-light);
  margin-bottom: var(--space-md);
}

.gz-welcome-step__content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.gz-welcome-step__details {
  font-size: 13px;
  color: var(--text-muted);
}

.gz-welcome-step__details li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--border-light);
}

.gz-welcome-step__details li:last-child {
  border-bottom: none;
}

.gz-welcome__total {
  text-align: center;
}

.gz-welcome__total-box {
  display: inline-flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(155, 89, 182, 0.15) 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-3xl);
  margin-bottom: var(--space-xl);
}

.gz-welcome__total-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.gz-welcome__total-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
}

/* ============================================
   REWARDS SECTION
   ============================================ */
.gz-rewards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.gz-reward-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  transition: var(--transition-base);
}

.gz-reward-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.gz-reward-card__frequency {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(212, 175, 55, 0.1);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
}

.gz-reward-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.gz-reward-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.gz-reward-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   GAMES UNIVERSE SECTION
   ============================================ */
.gz-games-universe__showcase {
  display: grid;
  gap: var(--space-lg);
}

.gz-game-category {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition-base);
}

.gz-game-category:hover {
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .gz-game-category {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.gz-game-category--featured {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
  border-color: var(--primary);
}

.gz-game-category__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  min-width: 100px;
}

.gz-game-category__emoji {
  font-size: 4rem;
}

.gz-game-category__badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.2);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
}

.gz-game-category__content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.gz-game-category__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 14px;
  color: var(--primary);
}

.gz-game-category__content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.gz-game-category__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.gz-game-category__tags span {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg-elevated);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
}

/* ============================================
   LIVE EXPERIENCE SECTION
   ============================================ */
.gz-live-experience__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 900px) {
  .gz-live-experience__content {
    grid-template-columns: 1.5fr 1fr;
  }
}

.gz-live-experience__main {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.gz-live-experience__main h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--primary);
}

.gz-live-experience__main p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.gz-live-experience__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

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

.gz-live-feature {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.gz-live-feature span {
  font-size: 1.5rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.gz-live-feature h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.gz-live-feature p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.gz-live-experience__shows {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.gz-live-experience__shows h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.gz-live-experience__shows > p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: var(--space-lg);
}

.gz-shows-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.gz-show-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  background: var(--bg-dark);
  border-radius: var(--radius-md);
}

.gz-show-item__name {
  font-weight: 600;
}

.gz-show-item__multiplier {
  font-size: 13px;
  color: var(--primary);
  font-weight: 700;
}

/* ============================================
   START SECTION
   ============================================ */
.gz-start__timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.gz-start-step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
}

.gz-start-step__time {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(212, 175, 55, 0.1);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.gz-start-step__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.gz-start-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.gz-start-step p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.gz-start__note {
  background: rgba(52, 152, 219, 0.1);
  border: 1px solid rgba(52, 152, 219, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.gz-start__note p {
  color: var(--info);
  font-size: 14px;
  text-align: center;
}

.gz-start__cta {
  text-align: center;
}

/* ============================================
   BANKING SECTION
   ============================================ */
.gz-banking__ecosystem {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 900px) {
  .gz-banking__ecosystem {
    grid-template-columns: 1fr 1fr;
  }
}

.gz-banking__deposits,
.gz-banking__withdrawals {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.gz-banking__deposits h3,
.gz-banking__withdrawals h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  color: var(--primary);
}

.gz-banking__methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.gz-banking-method {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.gz-banking-method h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.gz-banking-method p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.gz-banking-method__limits {
  font-size: 12px;
  color: var(--text-muted);
}

.gz-banking__speeds {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.gz-speed-tier {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-md);
  align-items: center;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

@media (max-width: 500px) {
  .gz-speed-tier {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.gz-speed-tier--fastest {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
  border: 1px solid var(--primary);
}

.gz-speed-tier--fast {
  background: rgba(46, 204, 113, 0.1);
}

.gz-speed-tier__badge {
  font-size: 12px;
  font-weight: 700;
}

.gz-speed-tier__time {
  font-weight: 600;
}

.gz-speed-tier__methods {
  font-size: 12px;
  color: var(--text-muted);
}

.gz-banking__note {
  margin-top: var(--space-lg);
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   VIP PROGRAM SECTION
   ============================================ */
.gz-vip-program__tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.gz-vip-tier {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
}

.gz-vip-tier:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.gz-vip-tier--featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.gz-vip-tier__header {
  padding: var(--space-xl);
  text-align: center;
}

.gz-vip-tier__header--bronze {
  background: linear-gradient(135deg, #cd7f32 0%, #8b4513 100%);
}

.gz-vip-tier__header--silver {
  background: linear-gradient(135deg, #c0c0c0 0%, #808080 100%);
}

.gz-vip-tier__header--gold {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.gz-vip-tier__header--platinum {
  background: linear-gradient(135deg, #e5e4e2 0%, #9e9e9e 100%);
}

.gz-vip-tier__header--diamond {
  background: linear-gradient(135deg, #b9f2ff 0%, #89cff0 50%, #a8d8ea 100%);
}

.gz-vip-tier__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.gz-vip-tier__header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: var(--space-xs);
}

.gz-vip-tier__req {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}

.gz-vip-tier__benefits {
  padding: var(--space-lg);
}

.gz-vip-tier__benefits li {
  padding: var(--space-sm) 0;
  font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

.gz-vip-tier__benefits li:last-child {
  border-bottom: none;
}

.gz-vip-tier__limit {
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-elevated);
  font-size: 12px;
  color: var(--text-muted);
}

.gz-vip-tier__limit span {
  color: var(--text-secondary);
}

.gz-vip-program__earning {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.gz-vip-program__earning h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.gz-vip-program__earning p {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   SECURITY SECTION
   ============================================ */
.gz-security__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.gz-security-pillar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.gz-security-pillar__icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.gz-security-pillar h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.gz-security-pillar p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.gz-security__tools {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.gz-security__tools h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  text-align: center;
}

.gz-security__tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.gz-security-tool {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}

.gz-security-tool span {
  font-size: 1.5rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.gz-security-tool h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.gz-security-tool p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   RESPONSIBLE GAMING SECTION
   ============================================ */
.gz-responsible__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 900px) {
  .gz-responsible__content {
    grid-template-columns: 1fr 1fr;
  }
}

.gz-responsible__tools,
.gz-responsible__help {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.gz-responsible__tools h3,
.gz-responsible__help h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-xl);
}

.gz-responsible__tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (max-width: 600px) {
  .gz-responsible__tools-grid {
    grid-template-columns: 1fr;
  }
}

.gz-responsible-tool {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.gz-responsible-tool h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.gz-responsible-tool p {
  font-size: 12px;
  color: var(--text-muted);
}

.gz-responsible__help p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.gz-responsible__resources {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.gz-help-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-md);
  align-items: center;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--text-primary);
  transition: var(--transition-base);
}

.gz-help-link:hover {
  background: var(--bg-card-hover);
  color: var(--primary);
}

.gz-help-link span:first-child {
  font-size: 1.5rem;
}

.gz-help-link span:last-child {
  font-size: 12px;
  color: var(--text-muted);
}

.gz-responsible__note {
  margin-top: var(--space-lg);
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   PROVIDERS SECTION
   ============================================ */
.gz-providers__showcase {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.gz-providers__tier h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

.gz-providers__tier--premium h3 {
  color: var(--primary);
}

.gz-providers__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.gz-provider {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-base);
}

.gz-provider:hover {
  border-color: var(--primary);
  color: var(--text-primary);
}

.gz-providers__tier--premium .gz-provider {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
  border-color: var(--primary);
  color: var(--primary);
}

/* ============================================
   MOBILE SECTION
   ============================================ */
.gz-mobile__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 900px) {
  .gz-mobile__content {
    grid-template-columns: 1.5fr 1fr;
  }
}

.gz-mobile__main {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.gz-mobile__main h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.gz-mobile__main p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.gz-mobile__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

@media (max-width: 500px) {
  .gz-mobile__stats {
    grid-template-columns: 1fr;
  }
}

.gz-mobile-stat {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}

.gz-mobile-stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.gz-mobile-stat__label {
  font-size: 12px;
  color: var(--text-muted);
}

.gz-mobile__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.gz-mobile-feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.gz-mobile-feature span {
  font-size: 1.25rem;
  color: var(--success);
}

.gz-mobile-feature p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ============================================
   SUPPORT SECTION
   ============================================ */
.gz-support__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 900px) {
  .gz-support__content {
    grid-template-columns: 1fr 1fr;
  }
}

.gz-support__channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (max-width: 500px) {
  .gz-support__channels {
    grid-template-columns: 1fr;
  }
}

.gz-support-channel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.gz-support-channel--primary {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
  border-color: var(--primary);
}

.gz-support-channel__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-md);
}

.gz-support-channel h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.gz-support-channel p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.gz-support-channel__availability {
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
  text-transform: uppercase;
}

.gz-support__promise {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.gz-support__promise h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.gz-support__promise ul li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
  color: var(--text-secondary);
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
}

.gz-support__promise ul li:last-child {
  border-bottom: none;
}

.gz-support__promise ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ============================================
   CONTENT BOX (SEO Article)
   ============================================ */
.gz-content-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.gz-content-box h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  color: var(--primary);
}

.gz-content-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.gz-content-box p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.gz-content-cta {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  margin-top: var(--space-2xl);
}

.gz-content-cta h3 {
  margin-top: 0;
  color: var(--primary);
}

.gz-content-cta p {
  margin-bottom: var(--space-xl);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.gz-faq__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.gz-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gz-faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: var(--transition-base);
}

.gz-faq-item__question:hover {
  background: var(--bg-elevated);
}

.gz-faq-item__question span {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.gz-faq-item__icon {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform var(--transition-base);
}

.gz-faq-item.active .gz-faq-item__icon {
  transform: rotate(180deg);
}

.gz-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.gz-faq-item.active .gz-faq-item__answer {
  max-height: 500px;
}

.gz-faq-item__answer p {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.gz-final-cta {
  position: relative;
  padding: var(--space-3xl) var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: 
    radial-gradient(ellipse at 30% 30%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(155, 89, 182, 0.3) 0%, transparent 50%),
    var(--bg-card);
  border: 1px solid var(--primary);
  margin-bottom: var(--space-3xl);
}

.gz-final-cta__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.gz-final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.gz-final-cta__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gz-final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   FOOTER
   ============================================ */
.gz-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: var(--space-3xl) var(--space-xl);
}

@media (min-width: 1200px) {
  .gz-footer {
    margin-left: var(--sidebar-width);
  }
}

.gz-footer__inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.gz-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border-light);
}

@media (min-width: 768px) {
  .gz-footer__top {
    grid-template-columns: 1.5fr 2fr;
  }
}

.gz-footer__brand {
  max-width: 350px;
}

.gz-footer__logo {
  margin-bottom: var(--space-lg);
}

.gz-footer__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.gz-footer__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-xl);
}

.gz-footer__column h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.gz-footer__column ul li {
  margin-bottom: var(--space-sm);
}

.gz-footer__column ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.gz-footer__column ul li a:hover {
  color: var(--primary);
}

.gz-footer__bottom {
  text-align: center;
}

.gz-footer__bottom p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.gz-footer__disclaimer {
  font-size: 12px;
}

.gz-footer__payments {
  font-size: 11px;
  letter-spacing: 1px;
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

/* Utility Classes */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 480px) {
  :root {
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
  }
  
  .gz-hero {
    padding: var(--space-2xl) var(--space-md);
  }
  
  .gz-hero__offer {
    padding: var(--space-md) var(--space-lg);
  }
  
  .gz-hero__cta {
    width: 100%;
  }
  
  .gz-btn--large {
    width: 100%;
  }
}