:root {
  --primary-color: #8b5cf6;
  --primary-dark: #7c3aed;
  --primary-light: #a78bfa;
  --accent-color: #06b6d4;
  --accent-light: #22d3ee;
  --accent-pink: #ec4899;
  --neon-gradient: linear-gradient(135deg, #8b5cf6, #06b6d4, #ec4899);
  --dark-gradient: linear-gradient(180deg, #0f172a, #1e293b);
  --background-color: #1e293b;
  --background-light: #0f172a;
  --background-card: #1e293b;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-light: #94a3b8;
  --border-color: #334155;
  --neon-glow: 0 0 20px rgba(139, 92, 246, 0.6);
  --shadow-sm: 0 2px 8px rgba(139, 92, 246, 0.2);
  --shadow-md: 0 4px 16px rgba(139, 92, 246, 0.3);
  --shadow-lg: 0 8px 32px rgba(139, 92, 246, 0.4);
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;
  --transition: all 0.3s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--dark-gradient);
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.age-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(12px);
  justify-content: center;
  align-items: center;
}
.age-modal-content {
  background: var(--background-card);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--neon-glow), var(--shadow-lg);
  border: 2px solid var(--primary-color);
  max-width: 500px;
  width: 90%;
  overflow: hidden;
  animation: modalSlideIn 0.4s ease-out;
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.age-modal-header {
  background: var(--neon-gradient);
  padding: 30px;
  text-align: center;
  position: relative;
}
.age-modal-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}
.age-modal-header h2 {
  color: var(--text-primary);
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
  position: relative;
  z-index: 1;
}
.age-modal-body {
  padding: 40px 30px;
  text-align: center;
  background: var(--background-card);
}
.age-modal-body p {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.age-modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
.age-modal-buttons button {
  flex: 1;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}
.btn-confirm {
  background: var(--neon-gradient);
  color: var(--text-primary);
  box-shadow: var(--neon-glow);
  border: 2px solid transparent;
}
.btn-confirm:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.8), var(--shadow-md);
}
.btn-decline {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--border-color);
}
.btn-decline:hover {
  background: var(--border-color);
  color: var(--text-primary);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-top: 2px solid var(--primary-color);
  color: var(--text-primary);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(139, 92, 246, 0.3);
  z-index: 9999;
  animation: slideUp 0.4s ease-out;
  backdrop-filter: blur(10px);
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-content p {
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.cookie-buttons {
  display: flex;
  gap: 12px;
}
.btn-accept,
.btn-learn-more {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-accept {
  background: var(--neon-gradient);
  color: var(--text-primary);
  border: none;
  box-shadow: var(--neon-glow);
}
.btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
}
.btn-learn-more {
  background: transparent;
  color: var(--accent-light);
  border: 2px solid var(--accent-color);
}
.btn-learn-more:hover {
  background: var(--accent-color);
  color: var(--background-light);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.main-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-bottom: 2px solid var(--primary-color);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.5px;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
}
.logo .highlight {
  background: var(--neon-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.8));
}
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
.main-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary-light);
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.hero {
  background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.95),
      rgba(30, 41, 59, 0.9)
    ),
    url("../img/1.png");
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--primary-color);
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(139, 92, 246, 0.3),
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.hero-overlay {
  position: relative;
  z-index: 2;
}
.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-content h2 {
  font-size: 56px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(139, 92, 246, 1), 0 0 60px rgba(139, 92, 246, 0.5);
  background: var(--neon-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 20px;
  color: var(--accent-light);
  margin-bottom: 40px;
  font-weight: 400;
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.8);
}
.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.feature-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
  transition: var(--transition);
}
.feature-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
  border-color: var(--accent-light);
}
.feature-badge .icon {
  font-size: 24px;
  color: var(--accent-light);
  text-shadow: 0 0 15px rgba(6, 182, 212, 1);
}
.feature-badge span:last-child {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--neon-gradient);
  color: var(--text-primary);
  box-shadow: var(--neon-glow);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 40px rgba(139, 92, 246, 1);
}
.btn-secondary {
  background: transparent;
  color: var(--accent-light);
  border: 2px solid var(--accent-color);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}
.btn-secondary:hover {
  background: var(--accent-color);
  color: var(--background-light);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.8);
}
.btn-large {
  padding: 16px 40px;
  font-size: 18px;
}

.welcome-section {
  padding: 80px 0;
  background: var(--background-light);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}
.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--neon-gradient);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 20px auto 0;
}
.welcome-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.welcome-text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}
.welcome-benefits {
  background: var(--background-card);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
}
.welcome-benefits h3 {
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
  text-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}
.benefits-list {
  list-style: none;
}
.benefits-list li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--neon-gradient);
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  box-shadow: var(--neon-glow);
}
.benefits-list strong {
  color: var(--text-primary);
  font-weight: 600;
}

.lottery-section {
  padding: 80px 0;
  background: var(--background-color);
}
.lottery-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}
.lottery-card {
  background: var(--background-card);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  border: 2px solid var(--border-color);
  display: grid;
  grid-template-columns: 400px 1fr;
  min-height: 300px;
}
.lottery-card:hover {
  transform: translateX(10px);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.6), var(--shadow-lg);
  border-color: var(--primary-color);
}
.lottery-card-header {
  background: var(--neon-gradient);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.lottery-card-header h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.jackpot-badge {
  display: inline-block;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--accent-light);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.6);
}
.lottery-card-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.game-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 2px solid var(--border-color);
}
.info-item {
  text-align: center;
}
.info-item .label {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-item .value {
  display: block;
  font-size: 18px;
  color: var(--primary-light);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}
.game-description {
  flex: 1;
}
.game-description h4 {
  font-size: 18px;
  color: var(--primary-light);
  margin: 20px 0 12px;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}
.game-description p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.game-description ul {
  margin: 12px 0 15px 20px;
  list-style: none;
}
.game-description ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.game-description ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-light);
  font-weight: bold;
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
}
.game-description strong {
  color: var(--text-primary);
  font-weight: 600;
}
.lottery-card-footer {
  padding: 0;
  margin-top: 20px;
}
.btn-game {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: var(--neon-gradient);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  box-shadow: var(--neon-glow);
  text-decoration: none;
}
.btn-game:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(139, 92, 246, 1);
}

.how-it-works {
  padding: 80px 0;
  background: var(--background-light);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.step-card {
  background: var(--background-card);
  padding: 35px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid var(--border-color);
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
  border-color: var(--primary-color);
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--neon-gradient);
  color: var(--text-primary);
  font-size: 28px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--neon-glow);
}
.step-card h3 {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}
.step-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.trust-section {
  padding: 80px 0;
  background: var(--background-color);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.trust-card {
  background: var(--background-card);
  padding: 35px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid var(--border-color);
}
.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
  border-color: var(--accent-color);
}
.trust-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.trust-icon i {
  background: var(--neon-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.8));
}
.trust-card h3 {
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}
.trust-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 50%, #ec4899 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/1.png");
  animation: float 20s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}
.cta-content p {
  font-size: 18px;
  color: var(--text-primary);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-disclaimer {
  font-size: 14px;
  margin-top: 30px;
  opacity: 0.9;
}

.mpc-footer {
  background-color: #0f172a;
  color: #e5e7eb;
  border-top: 2px solid var(--primary-color);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.mpc-footer.border-slate {
  border-color: var(--border-color) !important;
}
.mpc-footer .container-xxl {
  max-width: 1200px;
  margin-inline: auto;
  padding-top: 48px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
.mpc-footer a {
  color: #e5e7eb;
  text-decoration: none;
  transition: var(--transition);
}
.mpc-footer a:hover {
  color: var(--primary-light);
}
.mpc-footer .navbar-brand {
  padding: 0;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  color: #f9fafb;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 18px;
  font-weight: 600;
}
.mpc-footer p {
  margin-bottom: 8px;
  color: #d1d5db;
  font-size: 15px;
}
.mpc-footer a[href*="responsiblegambling.org"] {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: underline;
}
.mpc-footer > .container-xxl > .row {
  display: flex;
  flex-wrap: wrap;
}
.mpc-footer > .container-xxl > .row > .col-md-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.mpc-footer > .container-xxl > .row > .col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.mpc-footer > .container-xxl > .row > .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.mpc-footer .nav-pages > .row {
  display: flex;
  flex-wrap: wrap;
}
.mpc-footer .nav-pages > .row > .col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.mpc-footer .nav-pages {
  margin-top: 40px;
}
.mpc-footer .label-nav {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 18px;
}
.mpc-footer .nav-pages a {
  display: block;
  font-size: 14px;
  color: #e5e7eb;
  opacity: 0.86;
  margin-bottom: 6px;
}
.mpc-footer .nav-pages a:hover {
  opacity: 1;
  color: var(--accent-light);
}
.mpc-footer .logo-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 4px;
}
.mpc-footer .logo-trust .age18 {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid var(--accent-pink);
  background: #0f172a;
  color: var(--accent-pink);
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.6);
}
.mpc-footer .logo-trust img {
  display: block;
  height: 38px;
  width: auto;
}
.mpc-footer .border-top {
  border-top: 1px solid var(--border-color);
}
.mpc-footer .small {
  color: #9ca3af;
  line-height: 1.5;
  font-size: 13px;
}
.mpc-footer .small.fw-bold {
  color: #e5e7eb;
}

.form-container {
  max-width: 500px;
  margin: 60px auto;
  background: var(--background-card);
  padding: 50px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
}
.form-container h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}
.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
  font-family: inherit;
  background: var(--background-light);
  color: var(--text-primary);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.checkbox-group {
  display: flex;
  align-items: start;
  gap: 10px;
}
.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}
.checkbox-group label {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--neon-gradient);
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
  box-shadow: var(--neon-glow);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(139, 92, 246, 1);
}
.form-footer {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: var(--text-secondary);
}
.form-footer a {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
}
.form-footer a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.content-section {
  padding: 60px 0;
  background: var(--background-light);
}
.content-container {
  max-width: 900px;
  margin: 0 auto;
}
.content-container h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--primary-color);
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}
.content-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-light);
  margin: 40px 0 20px;
}
.content-container h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 30px 0 15px;
}
.content-container p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.content-container ul,
.content-container ol {
  margin: 20px 0 20px 30px;
  line-height: 1.8;
  color: var(--text-secondary);
}
.content-container li {
  margin-bottom: 12px;
  font-size: 15px;
}
.content-container strong {
  color: var(--text-primary);
  font-weight: 600;
}
.info-box {
  background: var(--background-card);
  border-left: 4px solid var(--accent-color);
  padding: 25px;
  margin: 30px 0;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
}
.info-box h3 {
  margin-top: 0;
  color: var(--accent-light);
}

@media (max-width: 991.98px) {
  .mpc-footer > .container-xxl > .row > .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .mpc-footer .nav-pages {
    margin-top: 32px;
  }
  .lottery-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .lottery-card-header {
    padding: 30px 25px;
  }
  .lottery-card-body {
    padding: 30px 25px;
  }
}
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .hero-content h2 {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-features {
    flex-direction: column;
    gap: 15px;
  }
  .welcome-content {
    grid-template-columns: 1fr;
  }
  .lottery-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .lottery-card-header {
    padding: 25px 20px;
  }
  .lottery-card-header h3 {
    font-size: 28px;
  }
  .jackpot-badge {
    font-size: 14px;
    padding: 8px 18px;
  }
  .lottery-card-body {
    padding: 25px 20px;
  }
  .game-info {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .form-container {
    padding: 30px 20px;
  }
  .age-modal-buttons {
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  .mpc-footer .nav-pages > .row > .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 18px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .hero-content h2 {
    font-size: 28px;
  }
  .cta-content h2 {
    font-size: 32px;
  }
  .lottery-card-header h3 {
    font-size: 24px;
  }
}
