/* 1Red UK Casino - Styles */
:root {
  --bg: #0c0c0f;
  --bg-soft: #121217;
  --text: #f3f4f6;
  --muted: #c9cbd1;
  --primary: #e11d2e;
  --primary-600: #c8102e;
  --outline: #ffffff22;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
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;
}

img { display: block; max-width: 100%; height: auto; }
a { color: #fff; text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.section { padding: 3rem 0; }
.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #e11d2e, #ff4757, #e11d2e);
  border-radius: 2px;
}
.section-header h2 {
  color: #e11d2e;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #e11d2e 0%, #ff4757 50%, #e11d2e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 0;
}
.section-header p {
  color: #c0c0c0;
  font-size: 20px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: 400;
}

/* General heading styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    margin: 0 0 1.5rem;
    letter-spacing: -0.3px;
}

h2 {
    color: #e11d2e;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #e11d2e 0%, #ff4757 50%, #e11d2e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
}



h3 {
    color: #e11d2e;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.3px;
    line-height: 1.3;
    position: relative;
    transition: all 0.3s ease;
}

h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #e11d2e, transparent);
    border-radius: 1px;
    transition: width 0.3s ease;
}

h3:hover::after {
    width: 60px;
}

/* Header */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 50; 
  background: linear-gradient(135deg, rgba(12,12,15,.98) 0%, rgba(18,18,23,.95) 50%, rgba(15,15,20,.97) 100%); 
  border-bottom: 1px solid rgba(225,29,46,.15); 
  backdrop-filter: saturate(180%) blur(25px); 
  box-shadow: 0 8px 32px rgba(0,0,0,.3), 0 1px 3px rgba(225,29,46,.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(225,29,46,.4) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.site-header:hover::before {
  opacity: 1;
}
.header-inner { 
  display: grid; 
  grid-template-columns: auto 1fr auto; 
  align-items: center; 
  gap: 1.5rem; 
  padding: 1.25rem 0; 
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 1rem;
  position: relative;
}
.brand { 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.brand::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, #c41e3a 100%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand:hover::after {
  width: 100%;
}
.brand:hover {
  transform: translateY(-1px);
}
.brand img { 
  filter: drop-shadow(0 2px 8px rgba(225,29,46,.3));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand:hover img {
  filter: drop-shadow(0 6px 16px rgba(225,29,46,.7)) brightness(1.1);
  transform: scale(1.08) rotate(2deg);
}
.primary-nav ul { 
  display: flex; 
  list-style: none; 
  gap: .25rem; 
  padding: 0; 
  margin: 0; 
}
.primary-nav a { 
  color: var(--muted); 
  padding: .75rem 1rem; 
  border-radius: .75rem; 
  font-size: 0.9rem; 
  font-weight: 500;
  white-space: nowrap; 
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.primary-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225,29,46,.15) 0%, rgba(225,29,46,.08) 100%);
  border-radius: .75rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.primary-nav a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255,255,255,.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.primary-nav a:hover::before {
  opacity: 1;
  transform: scale(1);
}
.primary-nav a:hover::after {
  width: 100px;
  height: 100px;
}
.primary-nav a:hover { 
  color: var(--text); 
  text-decoration: none; 
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(225,29,46,.2);
}
.header-cta { 
  display: none; 
  padding: .875rem 1.75rem; 
  font-size: 0.9rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary) 0%, #c41e3a 50%, #b01e37 100%);
  color: white;
  border-radius: .875rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: .75px;
  box-shadow: 0 6px 16px rgba(225,29,46,.35), inset 0 1px 0 rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
.header-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.header-cta:hover::before {
  left: 100%;
}
.header-cta:hover::after {
  opacity: 1;
}
.header-cta:hover {
  box-shadow: 0 12px 28px rgba(225,29,46,.6), inset 0 1px 0 rgba(255,255,255,.3);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px) scale(1.02);
}

/* 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; }
.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: .2s ease; }
.nav-toggle-label span::before { position: absolute; top: -6px; }
.nav-toggle-label span::after { position: absolute; top: 6px; }

/* Hide nav on mobile by default */
.primary-nav { display: none; }
#nav-toggle:checked ~ .primary-nav { display: block; grid-column: 1 / -1; }
#nav-toggle:checked ~ .primary-nav ul { flex-direction: column; padding: .75rem 0; }
#nav-toggle:checked ~ .primary-nav a { display: block; }

/* Buttons */
.btn { display: inline-block; padding: .5rem .75rem; border-radius: .5rem; font-weight: 600; border: 1px solid transparent; transition: background .2s ease, border-color .2s ease, transform .05s ease; font-size: 0.9rem; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(180deg, var(--primary), var(--primary-600)); border-color: #000; box-shadow: 0 3px 10px rgba(225,29,46,.25); }
.btn-primary:hover { filter: brightness(1.05); }
.btn-outline { background: transparent; border-color: var(--outline); color: var(--text); }
.btn-lg { padding: .75rem 1rem; font-size: 1rem; }

/* Hero */
.hero { 
  background: linear-gradient(135deg, rgba(12,12,15,.98) 0%, rgba(18,18,23,.95) 50%, rgba(15,15,20,.97) 100%), 
              radial-gradient(ellipse at 25% 15%, rgba(225,29,46,.2) 0%, transparent 60%),
              radial-gradient(ellipse at 75% 85%, rgba(225,29,46,.15) 0%, transparent 70%),
              radial-gradient(circle at 50% 50%, rgba(225,29,46,.05) 0%, transparent 80%);
  padding: 4rem 0 5rem; 
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(225,29,46,.03) 25%, transparent 50%, rgba(225,29,46,.03) 75%, transparent 100%);
  background-size: 60px 60px;
  animation: heroPattern 20s linear infinite;
  opacity: 0.6;
}
@keyframes heroPattern {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(60px) translateY(60px); }
}
.hero-grid { 
  display: grid; 
  gap: 3rem; 
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy {
  text-align: center;
}
.hero-copy h1 { 
  font-size: 2.25rem; 
  font-weight: 900; 
  line-height: 1.15; 
  margin: 0 0 2rem; 
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,.95) 30%, rgba(225,29,46,.9) 70%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0,0,0,.3);
  position: relative;
}
.hero-copy h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #c41e3a 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(225,29,46,.4);
}
.hero-copy p { 
  font-size: 1.375rem; 
  line-height: 1.8; 
  color: rgba(255,255,255,.9); 
  margin: 0 0 2.75rem;
  max-width: 600px;
  font-weight: 400;
  text-shadow: 0 3px 6px rgba(0,0,0,.3);
  margin-left: auto;
  margin-right: auto;
}
.hero-bonus {
  background: linear-gradient(135deg, rgba(225,29,46,.25) 0%, rgba(225,29,46,.15) 50%, rgba(225,29,46,.1) 100%);
  border: 1px solid rgba(225,29,46,.3);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  margin: 1.75rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(225,29,46,.2), inset 0 1px 0 rgba(255,255,255,.15);
}
.hero-bonus::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  animation: shimmer 4s ease-in-out infinite;
}
.hero-bonus::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(225,29,46,.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero-bonus:hover::after {
  opacity: 1;
}
@keyframes shimmer {
  0% { left: -100%; opacity: 0; }
  50% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
.hero-bonus h2 { 
  font-size: 1.625rem; 
  font-weight: 800; 
  margin: 0 0 .75rem; 
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,.3);
}
.hero-bonus .amount { 
  font-size: 2.75rem; 
  font-weight: 900; 
  background: linear-gradient(135deg, var(--primary) 0%, #ffffff 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: .75rem 0;
  text-shadow: 0 4px 8px rgba(225,29,46,.4);
  display: block;
  position: relative;
}
.hero-bonus .amount::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  border-radius: 1px;
}
.hero-bonus p { 
  margin: 0; 
  color: rgba(255,255,255,.95); 
  font-size: 1.125rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,.3);
  line-height: 1.6;
}
.hero-bonus strong {
  color: var(--primary);
  font-weight: 600;
}
.hero-benefits { 
  list-style: none; 
  padding: 0; 
  margin: 1.75rem 0 2.25rem; 
  color: var(--muted);
  display: grid;
  gap: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-benefits li { 
  padding-left: 30px; 
  position: relative;
  font-size: 18px;
  line-height: 1.7;
  transition: all 0.3s ease;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0,0,0,.2);
  color: #c5c5c5;
}

.hero-benefits li:hover {
  color: #d5d5d5;
  transform: translateX(5px);
}
.hero-benefits li:hover {
  color: var(--text);
  transform: translateX(4px);
}
.hero-benefits li::before { 
  content: "✓"; 
  position: absolute; 
  left: 0;
  top: 2px; 
  color: #e11d2e;
  font-weight: bold;
  font-size: 20px;
  background: rgba(225, 29, 46, 0.1);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(225, 29, 46, 0.2);
  text-shadow: 0 2px 4px rgba(225, 29, 46, 0.3);
  transition: all 0.3s ease;
}

.hero-benefits li:hover::before {
  transform: scale(1.1);
  color: #ff4757;
  background: rgba(225, 29, 46, 0.15);
}
.hero-actions { 
  display: flex; 
  gap: 1.25rem; 
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.hero-actions .btn {
  min-width: 160px;
  padding: .875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #c41e3a 50%, #b01e37 100%);
  border: 1px solid rgba(255,255,255,.15);
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: .875rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: .75px;
  box-shadow: 0 8px 24px rgba(225,29,46,.45), inset 0 1px 0 rgba(255,255,255,.2);
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-actions .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-actions .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero-actions .btn-primary:hover::before {
  left: 100%;
}
.hero-actions .btn-primary:hover::after {
  opacity: 1;
}
.hero-actions .btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(225,29,46,.65), inset 0 1px 0 rgba(255,255,255,.3);
  border-color: rgba(255,255,255,.25);
}
.hero-actions .btn-outline {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(225,29,46,.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

/* About features */
.features { 
  display: grid; 
  gap: 2rem; 
  grid-template-columns: 1fr;
  margin-top: 4rem;
}
.feature { 
  background: linear-gradient(135deg, rgba(18,18,23,.98) 0%, rgba(15,15,20,.95) 50%, rgba(12,12,15,.97) 100%); 
  border: 1px solid rgba(255,255,255,.12); 
  padding: 2.5rem 2rem; 
  border-radius: 1.25rem; 
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225,29,46,.08) 0%, rgba(225,29,46,.03) 50%, transparent 100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature:hover::before {
  opacity: 1;
}
.feature:hover::after {
  transform: scaleX(1);
}
.feature:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(225,29,46,.25);
  box-shadow: 0 20px 50px rgba(0,0,0,.25), 0 8px 25px rgba(225,29,46,.15);
}
.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary) 0%, #c41e3a 50%, #b01e37 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.25rem;
  color: white;
  box-shadow: 0 10px 25px rgba(225,29,46,.35), inset 0 1px 0 rgba(255,255,255,.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.feature-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.feature:hover .feature-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 16px 40px rgba(225,29,46,.5), inset 0 1px 0 rgba(255,255,255,.3);
}
.feature:hover .feature-icon::before {
  opacity: 1;
}
.feature img {
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(225,29,46,.2));
  transition: all 0.3s ease;
}
.feature:hover img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 6px 12px rgba(225,29,46,.4));
}
.feature h3 { 
  margin: 0 0 1.25rem; 
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text);
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, #c41e3a 100%);
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}
.feature:hover h3 {
  color: #ffffff;
  transform: translateY(-2px);
}
.feature:hover h3::after {
  width: 60px;
}
.feature p { 
  margin: 0; 
  color: #c5c5c5;
  line-height: 1.7;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  max-width: 280px;
}
.feature:hover p {
  color: #d5d5d5;
  transform: translateY(-2px);
}

/* Slots */
.slots-grid { 
  display: grid; 
  gap: 1.5rem; 
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
}
.slot { 
  background: linear-gradient(135deg, rgba(18,18,23,.98) 0%, rgba(15,15,20,.95) 50%, rgba(12,12,15,.97) 100%); 
  border: 1px solid rgba(255,255,255,.12); 
  border-radius: 1.25rem; 
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.slot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225,29,46,.12) 0%, rgba(225,29,46,.06) 50%, transparent 100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.slot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.slot:hover::before {
  opacity: 1;
}
.slot:hover::after {
  transform: scaleX(1);
}
.slot:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(225,29,46,.3);
  box-shadow: 0 25px 50px rgba(0,0,0,.3), 0 10px 25px rgba(225,29,46,.2);
}
.slot-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.slot img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 0;
}
.slot:hover img {
  transform: scale(1.08);
  filter: brightness(1.15) saturate(1.1);
}
.slot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.3) 70%, rgba(0,0,0,.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.slot:hover .slot-overlay {
  opacity: 1;
}
.slot-play-btn {
  background: rgba(225,29,46,.9);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transform: scale(0.8);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.slot:hover .slot-play-btn {
  transform: scale(1);
  background: var(--primary);
  box-shadow: 0 8px 20px rgba(225,29,46,.4);
}
.slot-info { 
  padding: 1.75rem;
  position: relative;
  z-index: 2;
}
.slot-info h3 { 
  margin: 0 0 .75rem; 
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.slot-info h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, #c41e3a 100%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}
.slot:hover .slot-info h3 {
  color: #ffffff;
  transform: translateY(-1px);
}
.slot:hover .slot-info h3::after {
  width: 50px;
}
.slot-info p { 
  margin: 0; 
  color: var(--muted); 
  font-size: .95rem;
  line-height: 1.6;
  font-weight: 400;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.slot:hover .slot-info p {
  color: rgba(255,255,255,.9);
  transform: translateY(-1px);
}
.slot-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, rgba(225,29,46,.95) 0%, rgba(225,29,46,.85) 100%);
  color: white;
  padding: .375rem 1rem;
  border-radius: 1.25rem;
  font-size: .8rem;
  font-weight: 700;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,.25);
  z-index: 3;
  transform: translateY(-15px) scale(0.8);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  box-shadow: 0 4px 12px rgba(225,29,46,.3);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.slot:hover .slot-badge {
  transform: translateY(0) scale(1);
  opacity: 1;
  box-shadow: 0 6px 20px rgba(225,29,46,.4);
}

/* Bonuses */
.bonus-grid { 
  display: grid; 
  gap: 1.5rem; 
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

.bonus-type {
    font-size: 15px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 18px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
}

.bonus-type::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #e11d2e, #ff4757);
    border-radius: 1px;
}

.bonus-terms {
    font-size: 13px;
    color: #777;
    margin-top: 18px;
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    border-left: 3px solid rgba(225, 29, 46, 0.3);
}
.bonus { 
  background: linear-gradient(135deg, var(--bg-soft) 0%, rgba(18,18,23,.95) 100%); 
  border: 1px solid rgba(255,255,255,.1); 
  padding: 2rem 1.5rem; 
  border-radius: 1.25rem; 
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: block;
}
.bonus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225,29,46,.08) 0%, rgba(225,29,46,.03) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.bonus:hover::before {
  opacity: 1;
}
.bonus::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(225,29,46,.5) 100%);
  transform: scaleY(0);
  transition: transform 0.4s ease;
  transform-origin: bottom;
}
.bonus:hover::after {
  transform: scaleY(1);
}
.bonus:hover {
  transform: translateY(-8px);
  border-color: rgba(225,29,46,.25);
  box-shadow: 0 20px 40px rgba(0,0,0,.3), 0 8px 16px rgba(225,29,46,.15);
}
.bonus-content { 
  position: relative;
  z-index: 1;
}
.bonus-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, #c41e3a 50%, #b01e37 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  font-size: 1.75rem;
  color: white;
  box-shadow: 0 10px 20px rgba(225,29,46,.35), inset 0 1px 0 rgba(255,255,255,.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.bonus-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.bonus:hover .bonus-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 16px 32px rgba(225,29,46,.5), inset 0 1px 0 rgba(255,255,255,.3);
}
.bonus:hover .bonus-icon::before {
  opacity: 1;
}
.bonus h3 { 
  margin: 0 0 1.25rem; 
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.bonus h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, #c41e3a 100%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}
.bonus:hover h3 {
  color: #ffffff;
  transform: translateY(-2px);
}
.bonus:hover h3::after {
  width: 70px;
}
.bonus p { 
  margin: 0 0 1.75rem; 
  color: #c5c5c5;
  line-height: 1.7;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  max-width: 320px;
}
.bonus:hover p {
  color: #d5d5d5;
  transform: translateY(-2px);
}
.bonus-amount {
  font-size: 36px;
  font-weight: 800;
  color: #e11d2e;
  text-shadow: 0 3px 6px rgba(225, 29, 46, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
  margin: 0 0 12px;
  line-height: 1.1;
  background: linear-gradient(135deg, #e11d2e, #ff4757);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bonus-amount::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #e11d2e, #ff4757);
  border-radius: 1px;
  opacity: 0.6;
}
.bonus:hover .bonus-amount {
  color: #ffffff;
  text-shadow: 0 6px 12px rgba(225,29,46,.6);
  transform: scale(1.08) translateY(-2px);
}
.bonus:hover .bonus-amount::after {
  opacity: 1;
}
.bonus-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #c41e3a 50%, #b01e37 100%);
  color: white;
  border: 1px solid rgba(255,255,255,.15);
  padding: .875rem 1.75rem;
  border-radius: .875rem;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: .75px;
  box-shadow: 0 6px 16px rgba(225,29,46,.35), inset 0 1px 0 rgba(255,255,255,.2);
  text-decoration: none;
  display: inline-block;
}
.bonus-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.bonus-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.bonus:hover .bonus-cta::before {
  left: 100%;
}
.bonus:hover .bonus-cta::after {
  opacity: 1;
}
.bonus:hover .bonus-cta {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(225,29,46,.5), inset 0 1px 0 rgba(255,255,255,.3);
  border-color: rgba(255,255,255,.25);
}

/* Payments */
.payment-logos { display: grid; grid-template-columns: repeat(4, minmax(64px, 1fr)); gap: 1rem; align-items: center; }
.payment-logos img { filter: grayscale(100%) brightness(1.2); opacity: .9; height: 28px; width: auto; justify-self: center; }
.payment-crypto p { margin-top: .5rem; color: var(--muted); font-size: .95rem; }

.payment-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 29, 46, 0.02), rgba(225, 29, 46, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(225, 29, 46, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.payment-method:hover::before {
    opacity: 1;
}

.payment-method span {
    color: #d0d0d0;
    font-size: 17px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.payment-method:hover span {
    color: #f0f0f0;
    transform: translateX(2px);
}

.live-game {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.live-game::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 29, 46, 0.02), rgba(225, 29, 46, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.live-game:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(225, 29, 46, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.live-game:hover::before {
    opacity: 1;
}

.live-game h3 {
    color: #e11d2e;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
    text-shadow: 0 2px 4px rgba(225, 29, 46, 0.3);
    background: linear-gradient(135deg, #e11d2e, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.live-game p {
    color: #c5c5c5;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.live-game:hover p {
    color: #d5d5d5;
    transform: translateY(-1px);
}
/* 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);
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
}
.final-cta .benefits li { 
  padding-left: 30px; 
  position: relative;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  color: #c5c5c5;
}
.final-cta .benefits li:hover {
  color: #d5d5d5;
  transform: translateX(5px);
}
.final-cta .benefits li::before { 
  content: "✓"; 
  position: absolute; 
  left: 0;
  top: 2px;
  color: #e11d2e;
  font-weight: bold;
  font-size: 20px;
  text-shadow: 0 2px 4px rgba(225, 29, 46, 0.3);
  transition: all 0.3s ease;
  background: rgba(225, 29, 46, 0.1);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(225, 29, 46, 0.2);
}
.final-cta .benefits li:hover::before {
  transform: scale(1.1);
  color: #ff4757;
  background: rgba(225, 29, 46, 0.15);
}

/* Footer */
.site-footer, .footer { 
  background: linear-gradient(135deg, rgba(12,12,15,.95) 0%, rgba(18,18,23,.98) 50%, rgba(15,15,20,.97) 100%); 
  border-top: 1px solid rgba(225,29,46,.2); 
  padding: 4rem 0 3rem; 
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before, .footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}
.site-footer::after, .footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(225,29,46,.05) 0%, transparent 50%);
  pointer-events: none;
}
.footer-inner { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 3rem;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-brand { 
  display: flex; 
  flex-direction: column;
  align-items: center; 
  gap: 1rem;
  text-align: center;
}
.footer-brand img { 
  height: 40px; 
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(225,29,46,.4));
  transition: all 0.3s ease;
}

.footer-brand img:hover {
  filter: drop-shadow(0 6px 16px rgba(225,29,46,.6));
  transform: scale(1.05);
}
.footer-brand p { 
  margin: 0; 
  font-size: 1rem; 
  color: rgba(255,255,255,.8);
  max-width: 500px;
  line-height: 1.7;
  text-shadow: 0 1px 2px rgba(0,0,0,.2);
  font-weight: 400;
}
.footer-nav { 
  width: 100%; 
  margin: 1.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(225,29,46,.02);
  border-radius: 1rem;
}
.footer-nav ul { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 1.5rem; 
  font-size: 0.9rem;
}
.footer-nav a { 
  color: var(--muted); 
  padding: 0.75rem 0; 
  display: block; 
  white-space: nowrap;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1rem;
}
.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.footer-nav a:hover::after {
  width: 100%;
}
.footer-nav a:hover { 
  color: var(--text); 
  text-decoration: none;
  transform: translateY(-2px);
}
.footer-legal { 
  color: var(--muted); 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 1.5rem; 
  font-size: 0.9rem; 
  text-align: center; 
  width: 100%;
  max-width: 900px;
  line-height: 1.7;
  background: rgba(225,29,46,.03);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(225,29,46,.08);
}
.footer-legal img { 
  height: 28px; 
  width: auto; 
  margin-bottom: 0.5rem;
  opacity: .8;
  transition: all 0.3s ease;
  filter: grayscale(0.3);
}
.footer-legal img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.1);
}
.footer-legal p { 
  margin: 0.5rem 0;
  color: rgba(255,255,255,.7);
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0,0,0,.2);
  line-height: 1.6;
}
.footer-legal strong {
  color: var(--text);
}
.footer-disclaimer {
  background: rgba(225,29,46,.05);
  border: 1px solid rgba(225,29,46,.1);
  border-radius: .75rem;
  padding: 1rem;
  margin-top: 1rem;
  font-size: .75rem;
  line-height: 1.5;
}
.footer-responsible {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.05);
}

/* SEO Text */
.seo-text {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 35px;
    margin: 45px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.seo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(225, 29, 46, 0.3), transparent);
}

.seo-text h3 {
    color: #e11d2e;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 25px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(225, 29, 46, 0.3);
    background: linear-gradient(135deg, #e11d2e, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.seo-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #e11d2e, #ff4757);
    border-radius: 1px;
}

.seo-text p {
    color: #c0c0c0;
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 18px;
    text-align: justify;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.seo-text p:last-child {
    margin-bottom: 0;
}

.seo-text p strong {
    color: #d5d5d5;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Provider Styles */
.provider {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.provider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 29, 46, 0.02), rgba(225, 29, 46, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.provider:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(225, 29, 46, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.provider h4 {
    color: #e11d2e;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    text-shadow: 0 2px 4px rgba(225, 29, 46, 0.3);
    background: linear-gradient(135deg, #e11d2e, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.provider p {
    color: #c0c0c0;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.provider:hover p {
    color: #d0d0d0;
    transform: translateY(-1px);
}

/* 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-inner, .site-footer .footer-inner { 
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
  }
  .footer-brand { 
    grid-column: 1;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }
  .footer-brand img { 
    height: 36px;
  }
  .footer-brand p {
    font-size: 1rem;
  }
  .footer-nav { 
    grid-column: 2 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    border-radius: 0;
  }
  .footer-nav ul {
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-legal { 
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.08);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer-legal img {
    height: 28px;
  }
  .footer-responsible {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .payment-logos { grid-template-columns: repeat(8, 1fr); }
}

@media (min-width: 1024px) {
  .hero-copy h1 { font-size: 2.5rem; }
}