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

:root {
  --dark-bg: #0a0e17;
  --darker-bg: #060913;
  --card-bg: #131820;
  --cyan-primary: #00d9ff;
  --cyan-dark: #00a8cc;
  --purple-accent: #8b5cf6;
  --text-white: #ffffff;
  --text-gray: #a0aec0;
  --border-color: #1e293b;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: var(--text-white);
  background: var(--dark-bg);
}

.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--cyan-primary), var(--purple-accent));
  color: white;
  padding: 12px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 217, 255, 0.3);
}

header {
  background: var(--darker-bg);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  margin-top: 48px;
  position: sticky;
  top: 48px;
  z-index: 999;
  backdrop-filter: blur(10px);
}

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

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--cyan-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--cyan-primary);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-dark));
  color: var(--darker-bg);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 217, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--cyan-primary);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-block;
  border: 2px solid var(--cyan-primary);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
}

.btn-secondary:hover {
  background: var(--cyan-primary);
  color: var(--darker-bg);
}

.hero {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 217, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-block;
  background: rgba(0, 217, 255, 0.1);
  color: var(--cyan-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.hero h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, var(--cyan-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--card-bg);
}

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

.section-label {
  color: var(--cyan-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-gray);
  max-width: 650px;
  margin: 0 auto;
}

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

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-primary);
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.2);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--cyan-primary),
    var(--purple-accent)
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
}

.card p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
}

.disclaimer {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1),
    rgba(0, 217, 255, 0.1)
  );
  border: 1px solid var(--purple-accent);
  border-radius: 12px;
  padding: 28px;
  margin: 50px 0;
}

.disclaimer h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--cyan-primary);
}

.disclaimer p {
  color: var(--text-gray);
  margin-bottom: 10px;
}

.disclaimer ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.disclaimer li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-white);
}

.disclaimer li::before {
  content: "→";
  color: var(--cyan-primary);
  font-weight: bold;
  flex-shrink: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.step-item {
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--cyan-primary),
    var(--purple-accent)
  );
  color: var(--darker-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  margin: 0 auto 16px;
}

.step-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

.step-item p {
  color: var(--text-gray);
  font-size: 14px;
}

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

.faq-item {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--cyan-primary);
}

.faq-item h4 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
}

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

.warning-box {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1),
    rgba(220, 38, 38, 0.1)
  );
  border: 1px solid #dc2626;
  border-radius: 10px;
  padding: 28px;
  margin: 32px 0;
}

.warning-box h4 {
  font-size: 20px;
  color: #fca5a5;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.warning-box ul {
  list-style: none;
  padding: 0;
}

.warning-box li {
  padding: 8px 0;
  color: var(--text-gray);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.warning-box li::before {
  content: "▸";
  color: #dc2626;
  flex-shrink: 0;
  font-weight: bold;
}

.form-container {
  max-width: 460px;
  margin: 60px auto;
  background: var(--card-bg);
  padding: 44px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.form-container h2 {
  font-size: 30px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 900;
}

.form-container p {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 28px;
  font-size: 14px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  background: var(--darker-bg);
  color: var(--text-white);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan-primary);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-gray);
  font-size: 13px;
}

.form-footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.form-footer a {
  color: var(--cyan-primary);
  text-decoration: none;
  font-weight: 600;
}

.form-footer a:hover {
  text-decoration: underline;
}

.content-page {
  padding: 60px 0 80px;
}

.content-header {
  max-width: 800px;
  margin: 0 auto 44px;
  text-align: center;
}

.content-header h1 {
  font-size: 40px;
  margin-bottom: 14px;
  font-weight: 900;
}

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

.content-body {
  max-width: 800px;
  margin: 0 auto;
}

.content-body h2 {
  font-size: 30px;
  margin: 44px 0 18px;
  font-weight: 900;
}

.content-body h3 {
  font-size: 22px;
  margin: 32px 0 14px;
  font-weight: 700;
}

.content-body p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.content-body ul,
.content-body ol {
  margin: 18px 0 18px 24px;
  color: var(--text-gray);
}

.content-body li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.content-body a {
  color: var(--cyan-primary);
  text-decoration: underline;
}

.content-body a:hover {
  color: var(--purple-accent);
}

.info-box {
  background: rgba(0, 217, 255, 0.05);
  border-left: 3px solid var(--cyan-primary);
  padding: 20px;
  border-radius: 6px;
  margin: 28px 0;
}

.info-box p {
  margin-bottom: 0;
}

.mpc-footer {
  background-color: var(--darker-bg);
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid var(--border-color);
}

.mpc-footer .container-xxl {
  max-width: 1200px;
  margin-inline: auto;
  padding: 48px 24px 40px;
}

.mpc-footer a {
  color: #e5e7eb;
  text-decoration: none;
}

.mpc-footer a:hover {
  color: var(--cyan-primary);
}

.mpc-footer .navbar-brand {
  padding: 0;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  color: var(--cyan-primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 18px;
  font-weight: 700;
}

.mpc-footer p {
  margin-bottom: 8px;
  color: #d1d5db;
  font-size: 14px;
}

.mpc-footer a[href*="responsiblegambling.org"] {
  color: var(--cyan-primary);
  font-weight: 600;
  text-decoration: underline;
}

.mpc-footer .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}

.mpc-footer .col-md-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.mpc-footer .col-md-6 {
  box-sizing: border-box;
  flex: 0 0 50%;
  max-width: 50%;
}

.mpc-footer .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.mpc-footer .nav-pages .row {
  display: flex;
  flex-wrap: wrap;
}

.mpc-footer .nav-pages .col-6 {
  box-sizing: border-box;
  flex: 0 0 50%;
  max-width: 50%;
}

.mpc-footer .nav-pages {
  margin-top: 40px;
}

.mpc-footer .label-nav {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 18px;
}

.mpc-footer .nav-pages a {
  display: block;
  font-size: 13px;
  color: #e5e7eb;
  opacity: 0.86;
  margin-bottom: 6px;
}

.mpc-footer .nav-pages a:hover {
  opacity: 1;
  color: var(--cyan-primary);
}

.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(--cyan-primary);
  background: var(--darker-bg);
  color: var(--cyan-primary);
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mpc-footer .logo-trust img {
  display: block;
  height: 38px;
  width: auto;
}

.mpc-footer .border-top {
  border-top: 1px solid var(--border-color);
}

.mpc-footer .text-center {
  text-align: center;
}

.mpc-footer .pt-3 {
  padding-top: 18px;
}

.mpc-footer .mt-4 {
  margin-top: 40px;
}

.mpc-footer .small {
  color: #9ca3af;
  line-height: 1.5;
  font-size: 12px;
}

.mpc-footer .small.fw-bold {
  color: #e5e7eb;
  font-weight: 600;
}

@media (max-width: 991px) {
  .mpc-footer .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 40px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }

  .section-title {
    font-size: 30px;
  }

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

@media (max-width: 575px) {
  .mpc-footer .nav-pages .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 18px;
  }

  .form-container {
    padding: 32px 24px;
  }

  .hero {
    padding: 60px 0;
  }

  .section {
    padding: 50px 0;
  }
}

.age-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeIn 0.3s ease-in-out;
}

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

.age-modal-content {
  background: var(--card-bg);
  max-width: 560px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
  overflow: hidden;
  animation: slideUp 0.4s ease-out;
  border: 1px solid var(--border-color);
}

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

.age-modal-header {
  background: linear-gradient(
    135deg,
    var(--cyan-primary) 0%,
    var(--purple-accent) 100%
  );
  color: var(--darker-bg);
  padding: 32px;
  text-align: center;
}

.age-modal-header i {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.age-modal-header h2 {
  font-size: 28px;
  font-weight: 900;
  margin: 0;
}

.age-modal-body {
  padding: 32px;
}

.age-modal-body p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 16px;
}

.age-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.btn-age-confirm,
.btn-age-decline {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-age-confirm {
  background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-dark));
  color: var(--darker-bg);
}

.btn-age-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.5);
}

.btn-age-decline {
  background: var(--darker-bg);
  color: var(--text-gray);
  border: 2px solid var(--border-color);
}

.btn-age-decline:hover {
  background: var(--dark-bg);
  border-color: var(--text-gray);
  color: var(--text-white);
}

.age-modal-footer {
  background: var(--darker-bg);
  padding: 20px 32px;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.age-modal-footer small {
  color: var(--text-gray);
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: -400px;
  left: 0;
  right: 0;
  background: var(--card-bg);
  box-shadow: 0 -4px 32px rgba(0, 217, 255, 0.2);
  z-index: 9999;
  transition: bottom 0.4s ease-out;
  border-top: 2px solid var(--cyan-primary);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--cyan-primary),
    var(--purple-accent)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-icon i {
  color: var(--darker-bg);
  font-size: 28px;
}

.cookie-text {
  flex: 1;
}

.cookie-text h4 {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-white);
  margin: 0 0 8px 0;
}

.cookie-text p {
  color: var(--text-gray);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--cyan-primary);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--purple-accent);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-decline {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cookie-accept {
  background: linear-gradient(
    135deg,
    var(--cyan-primary),
    var(--purple-accent)
  );
  color: var(--darker-bg);
}

.btn-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
}

.btn-cookie-decline {
  background: var(--darker-bg);
  color: var(--text-gray);
  border: 2px solid var(--border-color);
}

.btn-cookie-decline:hover {
  background: var(--dark-bg);
  border-color: var(--text-gray);
  color: var(--text-white);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .cookie-icon {
    width: 48px;
    height: 48px;
  }

  .cookie-icon i {
    font-size: 24px;
  }

  .cookie-text h4 {
    font-size: 18px;
  }

  .cookie-text p {
    font-size: 14px;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn-cookie-accept,
  .btn-cookie-decline {
    width: 100%;
    justify-content: center;
  }

  .age-modal-actions {
    flex-direction: column;
  }

  .age-modal-header h2 {
    font-size: 24px;
  }

  .age-modal-body {
    padding: 24px;
  }
}
