@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary-red: #E63946;
  --dark-red: #C1121F;
  --light-red: #FF6B7A;
  --accent-gold: #F4A261;
  --accent-blue: #457B9D;
  --dark-bg: #0A0E1A;
  --darker-bg: #05070D;
  --card-bg: #141B2D;
  --card-hover: #1A2438;
  --text-white: #FFFFFF;
  --text-primary: #0A0E1A;
  --text-secondary: #8B95A7;
  --text-gray: #B8C2D1;
  --text-muted: #6B7A95;
  --border-color: #1F2A3F;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.7);
  --radius: 16px;
  --radius-lg: 24px;
  --gradient-primary: linear-gradient(135deg, #E63946 0%, #C1121F 100%);
  --gradient-gold: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
  --gradient-blue: linear-gradient(135deg, #457B9D 0%, #1D3557 100%);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark-bg);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* Top Banner */
.top-banner {
  background: var(--gradient-primary);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  justify-content: space-between;
}

.banner-scroll {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 28px;
}

.banner-text-wrapper {
  display: flex;
  gap: 80px;
  animation: scroll-banner 50s linear infinite;
  white-space: nowrap;
}

.banner-text {
  color: var(--text-white);
  white-space: nowrap;
  display: inline-block;
  padding-right: 80px;
  font-weight: 500;
}

@keyframes scroll-banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.banner-badge {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Header */
.main-header {
  background: #FFFFFF;
  border-bottom: 4px solid var(--primary-red);
  padding: 16px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.menu-toggle {
  background: var(--gradient-primary);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 40px;
}

.main-nav a {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.3s;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--primary-red);
}

.header-actions {
  display: flex;
  gap: 16px;
}

.btn-login,
.btn-register {
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s;
  border: 2px solid var(--primary-red);
}

.btn-login {
  background: transparent;
  color: var(--primary-red);
  border-color: var(--primary-red);
}

.btn-login:hover {
  background: var(--primary-red);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-register {
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  box-shadow: var(--shadow-sm);
}

.btn-register:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #0A0E1A 0%, #1A2438 50%, #0A0E1A 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(230, 57, 70, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(69, 123, 157, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 60px 60px;
  animation: movePattern 25s linear infinite;
  opacity: 0.5;
}

@keyframes movePattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10, 14, 26, 0.3) 0%, rgba(10, 14, 26, 0.7) 100%);
  z-index: 1;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(230, 57, 70, 0.2);
  backdrop-filter: blur(20px);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 32px;
  border: 2px solid rgba(230, 57, 70, 0.4);
  color: var(--light-red);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(230, 57, 70, 0.3); }
  50% { box-shadow: 0 0 30px rgba(230, 57, 70, 0.5); }
}

.hero-title {
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
  background: linear-gradient(135deg, #FFFFFF 0%, #B8C2D1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--text-gray);
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 160px;
  transition: all 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(230, 57, 70, 0.3);
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 20px 56px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-cta:hover::before {
  width: 300px;
  height: 300px;
}

.hero-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(230, 57, 70, 0.4);
}

/* Mega Bonus */
.mega-bonus {
  padding: 100px 0;
  background: var(--darker-bg);
  position: relative;
}

.mega-bonus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.mega-bonus-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 80px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.mega-bonus-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.bonus-label {
  display: inline-block;
  background: var(--gradient-primary);
  padding: 8px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

.mega-bonus-left {
  position: relative;
  z-index: 1;
}

.mega-bonus-left h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 32px;
  color: var(--text-white);
  line-height: 1.2;
}

.bonus-amount-large {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.bonus-amount-large .currency {
  font-size: 56px;
  font-weight: 800;
  color: var(--accent-gold);
}

.bonus-amount-large .amount {
  font-size: 96px;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.bonus-amount-large .plus {
  font-size: 56px;
  font-weight: 700;
  color: var(--text-muted);
}

.bonus-amount-large .spins {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-blue);
  background: rgba(69, 123, 157, 0.2);
  padding: 8px 20px;
  border-radius: 12px;
  border: 1px solid rgba(69, 123, 157, 0.3);
}

.bonus-text {
  font-size: 20px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 400;
}

.bonus-highlights {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.highlight:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-red);
  transform: translateY(-2px);
}

.highlight .icon {
  font-size: 24px;
}

.mega-cta-btn {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 20px 48px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.mega-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.mega-cta-btn:hover::before {
  left: 100%;
}

.mega-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(230, 57, 70, 0.4);
}

.mega-bonus-right {
  position: relative;
  height: 450px;
  z-index: 1;
}

.bonus-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.2;
  animation: pulse-circle 4s ease-in-out infinite;
}

.circle-1 {
  width: 350px;
  height: 350px;
  animation-delay: 0s;
}

.circle-2 {
  width: 250px;
  height: 250px;
  animation-delay: 1.3s;
}

.circle-3 {
  width: 150px;
  height: 150px;
  animation-delay: 2.6s;
}

@keyframes pulse-circle {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.15); opacity: 0.35; }
}

.bonus-icon {
  font-size: 140px;
  z-index: 1;
  animation: float-icon 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(230, 57, 70, 0.3));
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(5deg); }
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FFFFFF 0%, #B8C2D1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.section-header p {
  font-size: 20px;
  color: var(--text-gray);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* Bonus Categories */
.bonus-categories {
  padding: 100px 0;
  background: var(--dark-bg);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

.category-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 2px solid transparent;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card:hover {
  transform: translateY(-12px);
  border-color: rgba(230, 57, 70, 0.3);
  box-shadow: var(--shadow-xl);
  background: var(--card-hover);
}

.category-primary::before {
  background: var(--gradient-primary);
}

.category-secondary::before {
  background: var(--gradient-blue);
}

.category-accent::before {
  background: var(--gradient-gold);
}

.category-icon {
  font-size: 72px;
  margin-bottom: 28px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.category-card h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-white);
}

.category-value {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 24px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.category-card p {
  color: var(--text-gray);
  margin-bottom: 28px;
  line-height: 1.8;
  font-size: 16px;
}

.category-features {
  list-style: none;
  margin-bottom: 36px;
}

.category-features li {
  padding: 12px 0;
  color: var(--text-gray);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-features li::before {
  content: '✓';
  color: var(--primary-red);
  font-weight: 900;
  font-size: 20px;
}

.category-btn {
  display: block;
  text-align: center;
  background: var(--gradient-primary);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 15px;
}

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

/* Weekly Promos */
.weekly-promos {
  padding: 100px 0;
  background: var(--darker-bg);
}

.promos-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.promo-day {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px;
  border-left: 5px solid;
  border-image: var(--gradient-primary) 1;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.promo-day::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
  transform: translate(50%, -50%);
}

.promo-day:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
  background: var(--card-hover);
}

.day-label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.promo-content h4 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-white);
}

.promo-content p {
  color: var(--text-gray);
  margin-bottom: 16px;
  font-size: 16px;
}

.promo-badge {
  display: inline-block;
  background: rgba(230, 57, 70, 0.2);
  color: var(--light-red);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(230, 57, 70, 0.3);
}

/* Bonus Calculator */
.bonus-calculator {
  padding: 100px 0;
  background: var(--dark-bg);
}

.calculator-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 64px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.calculator-card h3 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 12px;
  text-align: center;
  color: var(--text-white);
}

.calculator-card > p {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 48px;
  font-size: 18px;
}

.calculator-input {
  margin-bottom: 40px;
}

.calculator-input label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix {
  position: absolute;
  left: 24px;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-gold);
  z-index: 1;
}

.input-wrapper input {
  width: 100%;
  padding: 20px 24px 20px 60px;
  background: var(--darker-bg);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: var(--text-white);
  font-size: 24px;
  font-weight: 700;
  transition: all 0.3s;
}

.input-wrapper input:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
  background: var(--dark-bg);
}

.calculator-result {
  background: var(--darker-bg);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item:last-child {
  border-bottom: none;
  padding-top: 24px;
  margin-top: 8px;
  border-top: 2px solid rgba(230, 57, 70, 0.3);
}

.result-label {
  font-size: 18px;
  color: var(--text-gray);
  font-weight: 600;
}

.result-value {
  font-size: 32px;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calculator-btn {
  display: block;
  text-align: center;
  background: var(--gradient-primary);
  color: white;
  padding: 20px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 18px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Bonus Statistics */
.bonus-stats {
  padding: 100px 0;
  background: var(--darker-bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.stat-box {
  background: var(--card-bg);
  padding: 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.stat-box:hover::before {
  transform: scaleX(1);
}

.stat-box:hover {
  transform: translateY(-10px);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-xl);
  background: var(--card-hover);
}

.stat-icon-large {
  font-size: 72px;
  margin-bottom: 24px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.stat-number-large {
  font-size: 52px;
  font-weight: 900;
  color: var(--primary-red);
  margin-bottom: 16px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label-large {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.stat-desc {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Bonus Games Showcase */
.bonus-games {
  padding: 100px 0;
  background: var(--dark-bg);
}

.bonus-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.bonus-game-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s;
  text-align: center;
}

.bonus-game-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-xl);
}

.game-thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--darker-bg);
  position: relative;
}

.game-thumb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5));
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.bonus-game-card:hover .game-thumb img {
  transform: scale(1.15);
}

.bonus-game-card h4 {
  font-size: 20px;
  font-weight: 800;
  padding: 20px 20px 12px;
  color: var(--text-white);
}

.game-rtp {
  font-size: 15px;
  color: var(--accent-gold);
  font-weight: 700;
  padding: 0 20px 16px;
}

.game-play-link {
  display: block;
  background: var(--gradient-primary);
  color: white;
  padding: 16px;
  font-weight: 800;
  font-size: 15px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-play-link:hover {
  background: var(--dark-red);
  transform: scale(1.02);
}

/* Payment Methods */
.bonus-payment {
  padding: 100px 0;
  background: var(--darker-bg);
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.payment-method-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s;
}

.payment-method-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-lg);
  background: var(--card-hover);
}

.payment-icon-large {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
}

.payment-method-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-white);
}

.payment-method-card p {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.payment-note {
  display: inline-block;
  background: rgba(230, 57, 70, 0.2);
  color: var(--light-red);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(230, 57, 70, 0.3);
}

/* Loyalty Program */
.loyalty-program {
  padding: 100px 0;
  background: var(--dark-bg);
}

.loyalty-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.tier-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.tier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.tier-card:hover::before {
  transform: scaleX(1);
}

.tier-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(230, 57, 70, 0.5);
}

.tier-card.bronze {
  border-color: #CD7F32;
}

.tier-card.silver {
  border-color: #C0C0C0;
}

.tier-card.gold {
  border-color: #FFD700;
}

.tier-card.platinum {
  border-color: #E5E4E2;
  border-width: 4px;
}

.tier-badge {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.tier-card.bronze .tier-badge {
  background: #CD7F32;
  color: white;
}

.tier-card.silver .tier-badge {
  background: #C0C0C0;
  color: var(--dark-bg);
}

.tier-card.gold .tier-badge {
  background: #FFD700;
  color: var(--dark-bg);
}

.tier-card.platinum .tier-badge {
  background: #E5E4E2;
  color: var(--dark-bg);
}

.tier-card h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text-white);
}

.tier-requirements {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 600;
}

.tier-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tier-benefits li {
  font-size: 15px;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 12px;
}

.tier-benefits li::before {
  content: '✓';
  color: var(--primary-red);
  font-weight: 900;
  font-size: 18px;
}

/* Special Event Bonuses */
.event-bonuses {
  padding: 100px 0;
  background: var(--darker-bg);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.event-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
  transition: transform 0.6s;
}

.event-card:hover::before {
  transform: scale(1.5);
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-xl);
}

.event-date {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.event-card h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text-white);
  position: relative;
  z-index: 1;
}

.event-bonus {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary-red);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.event-desc {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.event-status {
  display: inline-block;
  background: rgba(230, 57, 70, 0.2);
  color: var(--light-red);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(230, 57, 70, 0.3);
  position: relative;
  z-index: 1;
}

/* Claim Guide */
.claim-guide {
  padding: 100px 0;
  background: var(--dark-bg);
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.guide-step {
  background: var(--card-bg);
  padding: 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s;
  position: relative;
}

.guide-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.guide-step:hover::before {
  transform: scaleX(1);
}

.guide-step:hover {
  transform: translateY(-10px);
  border-color: rgba(230, 57, 70, 0.3);
  box-shadow: var(--shadow-xl);
  background: var(--card-hover);
}

.step-icon {
  font-size: 80px;
  margin-bottom: 28px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.guide-step h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text-white);
}

.guide-step p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 16px;
}

/* Bonus Comparison */
.bonus-comparison {
  padding: 100px 0;
  background: var(--darker-bg);
}

.comparison-table {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row.header {
  background: rgba(230, 57, 70, 0.1);
  font-weight: 900;
}

.comparison-cell {
  padding: 24px;
  color: var(--text-white);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 16px;
}

.comparison-cell:last-child {
  border-right: none;
}

.comparison-cell.highlight {
  background: rgba(230, 57, 70, 0.15);
  font-weight: 800;
  color: var(--light-red);
}

.comparison-row:not(.header) .comparison-cell:first-child {
  color: var(--text-gray);
  font-weight: 600;
}

/* Success Stories */
.success-stories {
  padding: 100px 0;
  background: var(--dark-bg);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

.story-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(230, 57, 70, 0.3);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.story-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.story-name {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text-white);
}

.story-date {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.story-text {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  font-size: 16px;
}

.story-win {
  background: var(--gradient-gold);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

/* Detailed Terms */
.detailed-terms {
  padding: 100px 0;
  background: var(--darker-bg);
}

.terms-list {
  max-width: 1000px;
  margin: 0 auto;
}

.term-detail {
  background: var(--card-bg);
  padding: 40px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
}

.term-detail:hover {
  border-color: rgba(230, 57, 70, 0.3);
  box-shadow: var(--shadow-md);
  background: var(--card-hover);
}

.term-detail h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text-white);
}

.term-detail p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 17px;
}

/* Bonus FAQ */
.bonus-faq {
  padding: 100px 0;
  background: var(--dark-bg);
}

.faq-list {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  padding: 40px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(230, 57, 70, 0.3);
  box-shadow: var(--shadow-md);
  background: var(--card-hover);
}

.faq-item h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-white);
}

.faq-item p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 17px;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: var(--gradient-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 24px;
  color: white;
  letter-spacing: -1px;
}

.cta-content p {
  font-size: 22px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary {
  background: white;
  color: var(--dark-bg);
  padding: 20px 56px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 18px;
  transition: all 0.3s;
  box-shadow: var(--shadow-xl);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cta-secondary {
  background: transparent;
  color: white;
  padding: 20px 56px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 18px;
  border: 3px solid white;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

/* Footer */
.footer {
  background: #FFFFFF;
  padding: 60px 24px;
  border-top: 4px solid var(--primary-red);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer-logo img {
  height: 50px;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  padding: 8px 0;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: width 0.3s;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: var(--primary-red);
}

.footer-copy {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 500;
}

.footer-copy a {
  color: var(--primary-red);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }
  
  .mega-bonus-card {
    padding: 60px;
    gap: 60px;
  }
}

@media (max-width: 968px) {
  .hero-title {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .mega-bonus-card {
    grid-template-columns: 1fr;
    padding: 50px;
    gap: 40px;
  }

  .mega-bonus-right {
    height: 350px;
  }

  .section-header h2 {
    font-size: 42px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .bonus-amount-large .amount {
    font-size: 72px;
  }

  .hero-stats {
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .main-header {
    padding: 12px 16px;
  }

  .header-container {
    gap: 16px;
  }

  .main-nav {
    display: none;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-stats {
    gap: 20px;
    flex-direction: column;
  }

  .stat-item {
    width: 100%;
  }

  .stat-number {
    font-size: 36px;
  }

  .mega-bonus-card {
    padding: 40px 24px;
  }

  .bonus-amount-large .amount {
    font-size: 56px;
  }

  .bonus-amount-large .currency {
    font-size: 42px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-header p {
    font-size: 16px;
  }

  .calculator-card {
    padding: 40px 24px;
  }

  .cta-content h2 {
    font-size: 36px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .guide-steps {
    grid-template-columns: 1fr;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .comparison-row.header {
    display: none;
  }

  .comparison-cell:first-child {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 800;
    padding: 16px 20px 8px;
  }

  .comparison-cell:not(:first-child) {
    padding: 8px 20px 16px;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

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

  .bonus-games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .payment-methods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .loyalty-tiers {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .guide-step,
  .stat-box {
    padding: 32px 24px;
  }
}
