/* 1Red UK Casino - Styles */
:root {
  --bg: #0c0c0f;
  --bg-soft: #121217;
  --text: #f3f4f6;
  --muted: #c9cbd1;
  --primary: #e11d2e;
  --primary-600: #c8102e;
  --primary-light: #e63946;
  --outline: #ffffff22;
  --container: 1200px;
  
  /* Enhanced design variables */
  --surface-elevated: #1a1a1f;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  
  /* Animation variables */
  --transition-fast: 0.15s ease-out;
  --transition-normal: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --blur-sm: blur(4px);
  --blur-md: blur(8px);
  --blur-lg: blur(16px);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { 
  display: block; 
  max-width: 100%; 
  height: auto;
  transition: var(--transition-normal);
}

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

a:hover { 
  text-decoration: underline;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.container { 
  width: min(100% - 2rem, var(--container)); 
  margin-inline: auto;
  position: relative;
}

/* Loading animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px var(--primary); }
  50% { box-shadow: 0 0 20px var(--primary), 0 0 30px var(--primary); }
}

/* Utility classes */
.animate-fade-in { animation: fadeIn 0.6s ease-out; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease-out; }
.animate-slide-in-left { animation: slideInLeft 0.6s ease-out; }
.animate-slide-in-right { animation: slideInRight 0.6s ease-out; }
.animate-pulse { animation: pulse 2s infinite; }
.animate-glow { animation: glow 2s ease-in-out infinite alternate; }
.section { padding: 3rem 0; }
.section-header { margin-bottom: 1.5rem; }
.section-header h2 { margin: 0 0 .5rem; font-size: 1.75rem; }
.section-header p { margin: 0; color: var(--muted); }

/* Header */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 100; 
  background: rgba(15, 15, 18, 0.85); 
  backdrop-filter: var(--blur-md); 
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
  transition: var(--transition-normal);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225, 29, 46, 0.05) 0%, rgba(225, 29, 46, 0.02) 100%);
  pointer-events: none;
}

.header-inner { 
  display: grid; 
  grid-template-columns: auto 1fr auto; 
  align-items: center; 
  gap: 1rem; 
  padding: 0.75rem 0;
  position: relative;
  z-index: 1;
}

.brand {
  transition: var(--transition-normal);
}

.brand:hover {
  transform: scale(1.05);
}

.brand img { 
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.primary-nav ul { 
  display: flex; 
  list-style: none; 
  gap: .5rem; 
  padding: 0; 
  margin: 0; 
}

.primary-nav a { 
  color: var(--muted); 
  padding: .5rem .5rem; 
  border-radius: .5rem; 
  font-size: 0.85rem; 
  white-space: nowrap;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.primary-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(225, 29, 46, 0.1), transparent);
  transition: var(--transition-normal);
}

.primary-nav a:hover::before {
  left: 100%;
}

.primary-nav a:hover { 
  color: var(--text); 
  background: rgba(225, 29, 46, 0.15); 
  text-decoration: none;
  transform: translateY(-1px);
}

.header-cta { 
  display: none; 
  padding: .4rem .65rem; 
  font-size: 0.85rem;
  opacity: 0;
  animation: fadeIn 0.5s ease-out 0.2s forwards;
}

/* Mobile nav toggle */
.nav-toggle { position: absolute; left: -9999px; }

.nav-toggle-label { 
  display: grid; 
  place-items: center; 
  width: 40px; 
  height: 40px; 
  border: 1px solid var(--outline); 
  border-radius: .5rem; 
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
  z-index: 102;
}

.nav-toggle-label:hover {
  background: rgba(225, 29, 46, 0.1);
  border-color: var(--primary);
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after { 
  content: ""; 
  display: block; 
  width: 20px; 
  height: 2px; 
  background: var(--text); 
  border-radius: 2px; 
  position: relative; 
  transition: var(--transition-normal); 
}

.nav-toggle-label span::before { position: absolute; top: -6px; }
.nav-toggle-label span::after { position: absolute; top: 6px; }

#nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
#nav-toggle:checked ~ .nav-toggle-label span::before { 
  transform: rotate(45deg); 
  top: 0; 
  background: var(--primary);
}
#nav-toggle:checked ~ .nav-toggle-label span::after { 
  transform: rotate(-45deg); 
  top: -2px;
  background: var(--primary);
}

/* Hide nav on mobile by default */
.primary-nav { 
  display: none;
  animation: slideInLeft 0.3s ease-out;
}

#nav-toggle:checked ~ .primary-nav { 
  display: block; 
  grid-column: 1 / -1;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(15, 15, 18, 0.95);
  backdrop-filter: var(--blur-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.3s ease-out;
}

#nav-toggle:checked ~ .primary-nav ul { 
  flex-direction: column; 
  padding: .75rem 0;
  gap: 0;
}

#nav-toggle:checked ~ .primary-nav a { 
  display: block;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
}

#nav-toggle:checked ~ .primary-nav a:hover {
  transform: translateX(8px);
  background: rgba(225, 29, 46, 0.1);
  color: var(--primary);
}

/* Buttons */
.btn { 
  display: inline-block; 
  padding: .75rem 1.5rem; 
  border-radius: .75rem; 
  font-weight: 600; 
  text-align: center; 
  text-decoration: none; 
  transition: var(--transition-normal); 
  cursor: pointer; 
  border: none; 
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-normal);
}

.btn:hover::before {
  left: 100%;
}

.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { 
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%); 
  color: #fff;
  box-shadow: 
    0 4px 15px rgba(225, 29, 46, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover { 
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary) 100%); 
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(225, 29, 46, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 
    0 2px 10px rgba(225, 29, 46, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-outline { 
  background: rgba(255, 255, 255, 0.05); 
  color: var(--text); 
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: var(--blur-sm);
}

.btn-outline:hover { 
  background: rgba(255, 255, 255, 0.1); 
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-lg);
}

.btn-outline:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.05);
}

.btn-lg { padding: .75rem 1rem; font-size: 1rem; }

/* Button group animations */
.btn-group .btn:nth-child(1) {
  animation-delay: 0.1s;
}

.btn-group .btn:nth-child(2) {
  animation-delay: 0.2s;
}

.btn-group .btn:nth-child(3) {
  animation-delay: 0.3s;
}

/* Hero */
.hero { 
  padding: 3rem 0; 
  background: linear-gradient(135deg, #0c0c0f 0%, #1a1a1f 50%, #0f0f12 100%); 
  position: relative; 
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  background: 
    radial-gradient(circle at 20% 80%, rgba(225, 29, 46, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(225, 29, 46, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(225, 29, 46, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.jpg') center/cover;
  opacity: 0.08;
  z-index: 0;
}

.hero-grid { 
  display: grid; 
  gap: 2rem; 
  position: relative; 
  z-index: 1;
  align-items: center;
}

.hero-copy {
  animation: slideInLeft 0.8s ease-out;
}

.hero-copy h1 { 
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700; 
  line-height: 1.1; 
  margin: 0 0 1.5rem; 
  background: linear-gradient(135deg, #ffffff 0%, var(--primary) 50%, #ffffff 100%); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}

.hero-copy h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
}

.hero-copy p { 
  font-size: 1.1rem; 
  color: var(--muted); 
  margin: 0 0 2rem; 
  line-height: 1.7;
  opacity: 0.9;
}

.hero-benefits { list-style: none; padding: 0; margin: .5rem 0 1rem; color: var(--muted); }
.hero-benefits li { padding-left: 1.25rem; position: relative; }
.hero-benefits li::before { content: "•"; position: absolute; left: 0; color: var(--primary); }

.hero-actions { 
  display: flex; 
  gap: .75rem; 
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-image { 
  display: flex; 
  justify-content: center; 
  align-items: center;
  animation: slideInRight 0.8s ease-out;
}

.hero-image img { 
  max-width: 100%; 
  height: auto; 
  border-radius: 1rem; 
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: var(--transition-slow);
}

.hero-image img:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 20px rgba(225, 29, 46, 0.2);
}

/* About features */
.features { 
  display: grid; 
  gap: 1.5rem; 
  grid-template-columns: 1fr;
  padding: 2rem 0;
}

.feature { 
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--surface-elevated) 100%); 
  border: 1px solid rgba(255, 255, 255, 0.1); 
  border-radius: 1rem; 
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  cursor: pointer;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225, 29, 46, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-normal);
}

.feature::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 29, 46, 0.3);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 20px rgba(225, 29, 46, 0.1);
}

.feature:hover::before {
  opacity: 1;
}

.feature:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 12px rgba(225, 29, 46, 0.3);
  transition: var(--transition-normal);
}

.feature:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(225, 29, 46, 0.4);
}

.feature h3 { 
  margin: 0 0 1rem; 
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.feature p { 
  margin: 0; 
  color: var(--muted); 
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Slots */
.slots-grid { 
  display: grid; 
  gap: 1.5rem; 
  grid-template-columns: repeat(2, 1fr);
  padding: 1rem 0;
}

.slot-card { 
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--surface-elevated) 100%); 
  border: 1px solid rgba(255, 255, 255, 0.1); 
  border-radius: 1rem; 
  overflow: hidden; 
  transition: var(--transition-normal);
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.slot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225, 29, 46, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 1;
}

.slot-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(225, 29, 46, 0.4);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 25px rgba(225, 29, 46, 0.2);
}

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

.slot-card-image {
  position: relative;
  overflow: hidden;
  height: 140px;
}

.slot-card img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  transition: var(--transition-slow);
  filter: brightness(0.9);
}

.slot-card:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.slot-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

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

.play-button {
  background: rgba(225, 29, 46, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  backdrop-filter: var(--blur-sm);
}

.play-button:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.slot-card-content { 
  padding: 1.25rem;
  position: relative;
  z-index: 2;
}

.slot-card h3 { 
  margin: 0 0 0.75rem; 
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition-fast);
}

.slot-card:hover h3 {
  color: var(--primary-light);
}

.slot-card p { 
  margin: 0; 
  color: var(--muted); 
  font-size: 0.9rem;
  line-height: 1.5;
}

.slot-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.slot-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary);
  font-size: 0.8rem;
}

.slot-provider {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.8;
}

/* Loading state */
.slot-card.loading {
  pointer-events: none;
}

.slot-card.loading img {
  filter: blur(2px) brightness(0.7);
}

.slot-card.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid rgba(225, 29, 46, 0.3);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 3;
}

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

/* Legacy slot class for backward compatibility */
.slot { display: block; border-radius: .5rem; overflow: hidden; border: 1px solid var(--outline); background: #0f0f12; }
.slot img { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }

/* Bonuses */
.bonus-grid { 
  display: grid; 
  gap: 1.5rem; 
  grid-template-columns: 1fr;
  padding: 1rem 0;
}

.bonus-card { 
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--surface-elevated) 100%); 
  border: 1px solid rgba(255, 255, 255, 0.1); 
  border-radius: 1.25rem; 
  padding: 2rem 1.5rem; 
  position: relative; 
  overflow: hidden;
  transition: var(--transition-normal);
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.bonus-card::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 4px; 
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-600) 50%, var(--primary) 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.bonus-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225, 29, 46, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-normal);
}

.bonus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 29, 46, 0.3);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 25px rgba(225, 29, 46, 0.15);
}

.bonus-card:hover::after {
  opacity: 1;
}

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

.bonus-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.bonus-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(225, 29, 46, 0.3);
}

.bonus-card h3 { 
  margin: 0 0 1rem; 
  font-size: 1.25rem; 
  color: var(--text);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.bonus-card p { 
  margin: 0 0 1.5rem; 
  color: var(--muted); 
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.bonus-amount { 
  font-size: 2rem; 
  font-weight: 700; 
  color: var(--text); 
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.bonus-progress {
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.bonus-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.bonus-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.bonus-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-600));
  border-radius: 3px;
  transition: width 0.8s ease-out;
  position: relative;
}

.bonus-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.bonus-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.bonus-features li {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-features li:last-child {
  border-bottom: none;
}

.bonus-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
  margin-right: 0.75rem;
  width: 16px;
  text-align: center;
}

.bonus-card .bonus-terms { 
  font-size: 0.8rem; 
  color: var(--muted); 
  opacity: 0.7;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.bonus-cta {
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.bonus-cta .btn {
  width: 100%;
  justify-content: center;
  font-weight: 600;
}

/* Legacy bonus class for backward compatibility */
.bonus { background: var(--bg-soft); border: 1px solid var(--outline); border-radius: .75rem; overflow: hidden; display: grid; }
.bonus-content { padding: 1rem; }
.bonus h3 { margin: .25rem 0 .25rem; }
.bonus p { margin: 0 0 .75rem; color: var(--muted); }

/* Payments */
.payments { 
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-elevated) 100%); 
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem; 
  margin: 2rem 0;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.payments::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225, 29, 46, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.payments-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.payments-header h2 {
  font-size: 1.75rem;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.payments-header p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  color: var(--success);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.security-badge::before {
  content: '🔒';
  font-size: 0.9rem;
}

.payment-methods { 
  display: flex; 
  flex-direction: column; 
  gap: 2.5rem; 
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.payment-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: var(--transition-normal);
}

.payment-section:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(225, 29, 46, 0.2);
  transform: translateY(-2px);
}

.payment-cards h3, 
.payment-crypto h3, 
.payment-times h3 { 
  font-size: 1.25rem; 
  margin: 0 0 1.25rem; 
  color: var(--text);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.payment-cards h3::before {
  content: '💳';
  font-size: 1.1rem;
}

.payment-crypto h3::before {
  content: '₿';
  font-size: 1.1rem;
  color: var(--primary);
}

.payment-times h3::before {
  content: '⚡';
  font-size: 1.1rem;
}

.payment-logos { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 1.5rem;
}

.payment-logo-item { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: var(--transition-normal);
  cursor: pointer;
  position: relative;
}

.payment-logo-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225, 29, 46, 0.05) 0%, transparent 50%);
  border-radius: 0.75rem;
  opacity: 0;
  transition: var(--transition-normal);
}

.payment-logo-item:hover::before {
  opacity: 1;
}

.payment-logo-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
}

.payment-logo-item img { 
  filter: grayscale(100%) brightness(1.2); 
  opacity: 0.8; 
  height: 32px; 
  width: auto; 
  margin-bottom: 0.75rem; 
  transition: var(--transition-normal);
  position: relative;
  z-index: 1;
}

.payment-logo-item:hover img { 
  filter: grayscale(0); 
  opacity: 1;
  transform: scale(1.05);
}

.payment-logo-item span { 
  font-size: 0.85rem; 
  color: var(--muted);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.payment-info { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 2rem;
}

.payment-crypto p { 
  margin: 0; 
  color: var(--muted); 
  font-size: 0.95rem;
  line-height: 1.6;
}

.payment-times ul { 
  margin: 0; 
  padding: 0;
  list-style: none;
  color: var(--muted); 
  font-size: 0.95rem;
}

.payment-times li { 
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.payment-times li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.payment-times li:last-child { 
  margin-bottom: 0; 
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 4px 12px rgba(225, 29, 46, 0.3);
}

.trust-text {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* Final CTA */
.final-cta .cta-wrap { display: grid; gap: 1rem; background: linear-gradient(180deg, #15151a, #0f0f12); border: 1px solid var(--outline); border-radius: .75rem; padding: 1.25rem; }
.final-cta .benefits { list-style: none; padding: 0; margin: .5rem 0 0; color: var(--muted); }
.final-cta .benefits li { padding-left: 1.25rem; position: relative; }
.final-cta .benefits li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); }

/* Footer */
.site-footer, .footer { 
  border-top: 1px solid rgba(255, 255, 255, 0.1); 
  padding: 3rem 0 1rem; 
  background: linear-gradient(135deg, #0a0a0d 0%, #1a1a1f 100%);
  position: relative;
  overflow: hidden;
}

.site-footer::before, .footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225, 29, 46, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.footer-inner { 
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand { 
  display: flex; 
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand img { 
  height: 32px; 
  width: auto;
  filter: brightness(1.1);
}

.footer-brand p { 
  margin: 0; 
  font-size: 0.9rem; 
  color: var(--muted);
  font-weight: 500;
}

.footer-tagline {
  font-size: 1rem;
  color: var(--text);
  margin: 0.5rem 0 0;
  opacity: 0.9;
}

.footer-nav { 
  width: 100%; 
  margin: 1rem 0;
}

.footer-nav ul { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 1rem; 
  font-size: 0.9rem;
}

.footer-nav li {
  position: relative;
}

.footer-nav a { 
  color: var(--muted); 
  padding: 0.5rem 1rem;
  display: block; 
  white-space: nowrap;
  border-radius: 20px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.footer-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(225, 29, 46, 0.1), transparent);
  transition: var(--transition-normal);
}

.footer-nav a:hover::before {
  left: 100%;
}

.footer-nav a:hover { 
  color: var(--primary); 
  background: rgba(225, 29, 46, 0.05);
  transform: translateY(-2px);
}

.footer-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.footer-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  transition: var(--transition-normal);
}

.footer-feature:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(225, 29, 46, 0.2);
  transform: translateY(-2px);
}

.footer-feature-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.footer-feature-text {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.footer-legal { 
  color: var(--muted); 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 1rem; 
  font-size: 0.85rem; 
  text-align: center; 
  width: 100%;
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.footer-legal img { 
  height: 24px; 
  width: auto; 
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.footer-legal p { 
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  color: var(--success);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.footer-badge::before {
  content: '✓';
  font-size: 0.8rem;
  font-weight: bold;
}

/* Copyright line */
.site-footer .copyright, .footer .copyright {
  text-align: center;
  color: var(--muted);
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--outline);
  width: 100%;
}

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: static; width: auto; height: auto; padding: .5rem; background: #000; }

/* Responsive */
@media (min-width: 768px) {
  .header-inner { grid-template-columns: auto 1fr auto auto; gap: 1rem; }
  .nav-toggle-label { display: none; }
  .primary-nav { display: block !important; }
  .primary-nav ul { justify-content: center; gap: .75rem; }
  .primary-nav a { font-size: 0.9rem; padding: .5rem .65rem; }
  .header-cta { display: inline-block; }

  .hero { padding-top: 2rem; }
  .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 2rem; }
  .hero-copy h1 { font-size: 2.25rem; }

  .features { grid-template-columns: repeat(3, 1fr); }
  .slots-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .bonus-grid { grid-template-columns: repeat(3, 1fr); }
  .final-cta .cta-wrap { grid-template-columns: 1.2fr .8fr; align-items: center; }
  
  /* Footer desktop improvements */
  .footer-content {
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
  }
  
  .footer-brand {
    align-items: flex-start;
    text-align: left;
  }
  
  .footer-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .footer-nav ul {
    justify-content: flex-start;
    gap: 1.5rem;
  }
  
  .footer-legal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  
  .footer-badges {
    margin: 0;
  }
  
  .payment-logos { grid-template-columns: repeat(4, 1fr); }
  .payment-info { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .hero-copy h1 { font-size: 2.5rem; }
  .payment-methods { flex-direction: row; align-items: flex-start; }
  .payment-cards { flex: 2; }
  .payment-info { flex: 1; }
  
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
  }
  
  .footer-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-feature {
    padding: 0.75rem;
  }
  
  .footer-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .footer-nav a {
    padding: 0.4rem 0.8rem;
  }
}