@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #00FF41;
  --secondary-color: #0D1B0D;
  --third-color: #1A2E1A;
  --text-primary: #E8F5E8;
  --text-secondary: #B8D4B8;
  --accent-primary: #FF6B35;
  --zombie-green: #4A5D23;
  --spooky-purple: #6A0DAD;
  --haunted-orange: #FF8C00;
  --crypt-gray: #2C2C2C;
  --glow-green: #00FF00;
  --blood-red: #8B0000;
}

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

body {
  font-family: 'Ubuntu', sans-serif;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--third-color) 50%, var(--zombie-green) 100%);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    url(../images/background.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 255, 0, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(255, 140, 0, 0.05) 0%, transparent 30%);
  pointer-events: none;
  z-index: 0;
}


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

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

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.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: left 0.5s;
}

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

.btn-glow {
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
  animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 65, 0.5); }
  50% { box-shadow: 0 0 30px rgba(0, 255, 65, 0.8); }
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 27, 13, 0.8) 0%, rgba(26, 46, 26, 0.6) 100%);
  z-index: 1;
}

.zombie-plant-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 15%, rgba(0, 255, 65, 0.1) 0%, transparent 25%),
    radial-gradient(circle at 85% 85%, rgba(255, 107, 53, 0.1) 0%, transparent 25%);
  z-index: 1;
  pointer-events: none;
}

.floating-skulls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 75%, rgba(255, 140, 0, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 75% 25%, rgba(106, 13, 173, 0.05) 0%, transparent 20%);
  z-index: 1;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

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

.navbar {
  background-color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
}

.navbar .logo img {
  height: 50px;
  align-items: center;
}

.navbar-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar-menu li a:hover {
  color: var(--primary-color);
}

.navbar .auth-buttons {
  display: flex;
  gap: 10px;
}

.btn-login {
  background-color: var(--text-primary);
  color: var(--secondary-color);
  border: 2px solid var(--text-primary);
}

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

.btn-login:hover {
  background-color: transparent;
  color: var(--text-primary);
}

.btn-register:hover {
  background-color: var(--text-primary);
  color: var(--secondary-color);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--secondary-color), var(--third-color));
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 80px 20px;
  top: 20px;
  border-radius: 20px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-primary);
  box-shadow: 0 15px 40px rgba(0, 255, 65, 0.3);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 65, 0.1) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 20px;
}

.badge-text {
  background: linear-gradient(135deg, var(--accent-primary), var(--haunted-orange));
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
  animation: badge-glow 2s ease-in-out infinite alternate;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
  animation: text-glow 2s ease-in-out infinite alternate;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--accent-primary);
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(255, 107, 53, 0.1));
  padding: 20px;
  border-radius: 15px;
  border: 1px solid var(--accent-primary);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 255, 65, 0.2);
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-content h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.feature-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.hero-cta {
  margin-top: 40px;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-item {
  background: rgba(0, 255, 65, 0.1);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--accent-primary);
}

.final-thoughts {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 40px;
}

.final-thoughts-banner {
  flex: 1;
  max-width: 50%;
  overflow: hidden;
}

.final-thoughts-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.final-thoughts-intro {
  flex: 1;
  max-width: 50%;
  padding: 30px;
  background-color: var(--secondary-color);
  border-radius: 0 10px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.final-thoughts-intro h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.final-thoughts-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.why-choose {
  margin-top: 80px;
}

.why-choose-shell {
  border-radius: 28px;
  border: 1px solid rgba(0, 255, 65, 0.25);
  background: radial-gradient(circle at 90% 10%, rgba(0, 255, 65, 0.15), transparent 45%), rgba(0, 0, 0, 0.45);
  padding: 50px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.why-choose-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.why-choose-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--accent-primary);
  margin-bottom: 12px;
}

.why-choose-intro h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.why-choose-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 45px;
}

.why-panel {
  border-radius: 22px;
  border: 1px solid rgba(0, 255, 65, 0.2);
  background: rgba(0, 0, 0, 0.35);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.35);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.panel-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 255, 65, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.panel-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--accent-primary);
  margin: 0;
}

.panel-header h4 {
  margin: 4px 0 0;
  font-size: 1.25rem;
}

.panel-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel-points li {
  position: relative;
  padding-left: 22px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.panel-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
}

.bonus-programs {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.bonus-program {
  border: 1px solid rgba(0, 255, 65, 0.25);
  border-radius: 32px;
  padding: 40px;
  background: radial-gradient(circle at 85% 15%, rgba(0, 255, 65, 0.15), transparent 50%), rgba(0, 0, 0, 0.45);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 30px;
  align-items: center;
}

.program-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.program-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--accent-primary);
  margin: 0;
}

.program-subtitle {
  margin: 0;
  color: var(--text-secondary);
}

.program-points {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-secondary);
}

.program-points li {
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}

.program-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
}

.program-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.program-promo {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
}

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

.program-stat {
  width: 100%;
  padding: 30px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed rgba(0, 255, 65, 0.4);
  text-align: center;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.stat-value {
  font-size: 3rem;
  margin: 10px 0;
  color: var(--accent-primary);
}

.stat-note {
  margin: 0;
  color: var(--text-secondary);
}

.program-card-grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.program-card {
  border-radius: 22px;
  border: 1px solid rgba(0, 255, 65, 0.2);
  background: rgba(0, 0, 0, 0.4);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 255, 65, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.card-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--accent-primary);
  margin: 0;
}

.card-header h3 {
  margin: 4px 0 0;
  font-size: 1.1rem;
}

.card-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-secondary);
}

.card-points li {
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
}

.card-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
}

.games {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--secondary-color);
}

.games-intro h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.games-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.game-card {
  background-color: var(--third-color);
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.game-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.btn-play {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 20px;
  background-color: var(--accent-primary);
  color: var(--text-primary);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-play:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 65, 0.6);
}

.zombie-card {
  background: linear-gradient(135deg, var(--crypt-gray) 0%, var(--zombie-green) 50%, var(--third-color) 100%);
  border: 2px solid var(--accent-primary);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.zombie-card:hover {
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
}

.zombie-game-card {
  background: linear-gradient(135deg, var(--crypt-gray) 0%, var(--zombie-green) 50%, var(--third-color) 100%);
  border: 2px solid var(--accent-primary);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.zombie-game-card:hover {
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
}

.cta-section {
  text-align: center;
  margin-top: 30px;
}

.cta-note {
  font-size: 0.9rem;
  color: var(--accent-primary);
  font-style: italic;
  margin-top: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.footer-warning {
  font-size: 0.8rem;
  color: var(--accent-primary);
  text-align: center;
  font-style: italic;
  margin-top: 10px;
}

.faq {
  margin-top: 20px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--secondary-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.faq h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
}

.faq-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: linear-gradient(135deg, var(--secondary-color), var(--third-color));
  border-radius: 15px;
  padding: 22px 26px;
  border: 1px solid rgba(0, 255, 65, 0.25);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  padding: 0;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-question:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 4px;
  border-radius: 8px;
}

.faq-icon {
  font-size: 1.6rem;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 240px;
  opacity: 1;
  margin-top: 14px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.footer {
  background-color: var(--secondary-color);
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 1px solid var(--);
}

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

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

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

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.footer-copy p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
    flex-wrap: wrap;
  }

  .final-thoughts {
    flex-direction: column;
  }

  .final-thoughts-banner,
  .final-thoughts-intro {
    max-width: 100%;
    border-radius: 10px;
  }

  .final-thoughts-intro {
    padding: 20px;
  }

  .why-choose-shell {
    padding: 30px 20px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .bonus-program {
    padding: 30px 20px;
  }

  .program-layout {
    grid-template-columns: 1fr;
  }

  .program-media {
    order: -1;
  }

  .program-card-grid {
    grid-template-columns: 1fr;
  }
  .info-sections {
    padding: 20px 0;
  }

  .info-section {
    padding: 0 15px 40px;
  }

  .info-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .management-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-section {
    padding: 40px 20px;
    margin: 40px 15px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .faq {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .navbar .auth-buttons {
    margin-top: 10px;
    width: 100%;
    gap: 20px;
    justify-content: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero {
    padding: 40px 20px;
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .final-thoughts-intro h3,
  .why-choose-intro h2,
  .games-intro h3,
  .faq h3 {
    font-size: 1.3rem;
  }

  .footer-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 10px;
  }

  .navbar .auth-buttons {
    justify-content: center;
    width: 100%;
  }

  .hero {
    padding: 30px 15px;
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .feature-item {
    padding: 15px;
  }

  .feature-icon {
    font-size: 1.5rem;
  }

  .final-thoughts-intro {
    padding: 15px;
  }

  .why-choose-details {
    padding: 20px;
  }

  .bonus-sections {
    padding: 15px 0;
  }

  .bonus-section {
    padding: 0 10px 30px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .bonus-card {
    padding: 20px;
  }

  .card-icon {
    font-size: 2.5rem;
  }

  .bonus-card h3 {
    font-size: 1.2rem;
  }

  .info-sections {
    padding: 15px 0;
  }

  .info-section {
    padding: 0 10px 30px;
  }

  .cta-section {
    padding: 30px 15px;
    margin: 30px 10px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .promo-banner {
    margin: 20px 0;
    padding: 15px;
  }

  .promo-image {
    max-width: 100%;
    height: auto;
  }

  .faq {
    padding: 15px;
  }

  .footer {
    padding: 30px 15px;
  }

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

.wagering-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.wagering-item {
  background: linear-gradient(135deg, var(--secondary-color), var(--third-color));
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--accent-primary);
  box-shadow: 0 5px 15px rgba(0, 255, 65, 0.1);
}

.wagering-item h4 {
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.wagering-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.bonus-management {
  color: var(--text-secondary);
  margin: 20px 0;
  padding-left: 20px;
}

.bonus-management li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.bonus-management strong {
  color: var(--accent-primary);
}

@keyframes badge-glow {
  0% {
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
  }
  100% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
  }
}

@keyframes text-glow {
  0% {
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
  }
  100% {
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.8);
  }
}

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

.bonus-sections {
  margin-top: 60px;
  padding: 40px 0;
}

.bonus-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

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

.section-header h2 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--accent-primary);
  font-weight: 500;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.bonus-card {
  background: linear-gradient(135deg, var(--secondary-color), var(--third-color));
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 2px solid var(--accent-primary);
  box-shadow: 0 8px 25px rgba(0, 255, 65, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.bonus-card:hover::before {
  left: 100%;
}

.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 255, 65, 0.25);
  border-color: var(--glow-green);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.bonus-card h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.bonus-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.info-sections {
  margin-top: 60px;
  padding: 40px 0;
}

.info-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.info-card {
  background: linear-gradient(135deg, var(--secondary-color), var(--third-color));
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 1px solid var(--accent-primary);
  box-shadow: 0 5px 15px rgba(0, 255, 65, 0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 255, 65, 0.2);
}

.management-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.management-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(255, 107, 53, 0.1));
  padding: 20px;
  border-radius: 15px;
  border: 1px solid var(--accent-primary);
  transition: all 0.3s ease;
}

.management-features .feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 255, 65, 0.15);
}

.management-features .feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 5px;
}

.management-features .feature-content h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.management-features .feature-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.choice-note {
  text-align: center;
  font-style: italic;
  color: var(--accent-primary);
  font-size: 1.1rem;
  margin-top: 30px;
}

.cta-section {
  background: linear-gradient(135deg, var(--secondary-color), var(--third-color));
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  margin: 60px auto;
  max-width: 800px;
  border: 2px solid var(--accent-primary);
  box-shadow: 0 10px 30px rgba(0, 255, 65, 0.2);
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 20px;
  font-style: italic;
}

.promo-banner {
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(255, 107, 53, 0.1));
  border-radius: 15px;
  border: 2px solid var(--accent-primary);
  box-shadow: 0 5px 15px rgba(0, 255, 65, 0.2);
  transition: all 0.3s ease;
}

.promo-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 255, 65, 0.3);
  border-color: var(--glow-green);
}

.promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.promo-image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Breadcrumbs Styling */
.breadcrumbs {
  background: linear-gradient(135deg, var(--secondary-color), var(--third-color));
  padding: 15px 20px;
  margin: 20px;
  border-radius: 10px;
  border: 1px solid var(--accent-primary);
  box-shadow: 0 2px 10px rgba(0, 255, 65, 0.1);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin: 0 10px;
  color: var(--accent-primary);
  font-weight: bold;
}

.breadcrumb-link {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--accent-primary);
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: var(--accent-primary);
  font-weight: 600;
}

/* Skip Navigation for Accessibility */
.skip-nav {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--accent-primary);
  color: var(--background-color);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-nav:focus {
  top: 6px;
}

/* Enhanced Footer Styles */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 10px;
}

.footer-column h4 {
  color: var(--accent-primary);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent-primary);
}

.footer-trust h4 {
  color: var(--accent-primary);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badge {
  background: linear-gradient(135deg, var(--accent-primary), var(--glow-green));
  color: var(--background-color);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid var(--accent-primary);
  padding-top: 20px;
}

.footer-warning a {
  color: var(--accent-primary);
  text-decoration: underline;
}

/* Mobile Responsiveness for New Elements */
@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .trust-badges {
    justify-content: center;
  }
}
