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

:root {
  --orange-primary: #d32f2f;
  --orange-dark: #b71c1c;
  --yellow-accent: #ff1744;
  --yellow-light: #ff5252;
  --text-dark: #2d2d2d;
  --text-gray: #6b6b6b;
  --bg-white: #ffffff;
  --bg-cream: #fffbf5;
  --border-light: #f0e6d6;
}

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

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

header {
  background: var(--bg-white);
  padding: 20px 0;
  border-bottom: 3px solid var(--orange-primary);
  margin-top: 48px;
  position: sticky;
  top: 48px;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.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: 26px;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--orange-primary),
    var(--yellow-accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

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

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

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--orange-primary),
    var(--orange-dark)
  );
  color: white;
  padding: 11px 26px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

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

.btn-secondary {
  background: white;
  color: var(--orange-primary);
  padding: 11px 26px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-block;
  border: 2px solid var(--orange-primary);
  cursor: pointer;
  font-size: 14px;
}

.btn-secondary:hover {
  background: var(--orange-primary);
  color: white;
}

.hero {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--bg-cream) 0%, #fff5e6 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 210, 63, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

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

.hero-label {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--orange-primary),
    var(--yellow-accent)
  );
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.hero h1 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.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(--bg-white);
}

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

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

.section-title {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.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(--bg-white);
  border-radius: 16px;
  padding: 32px;
  border: 2px solid var(--border-light);
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--orange-primary);
  box-shadow: 0 12px 28px rgba(255, 107, 53, 0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--orange-primary),
    var(--yellow-accent)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 30px;
  color: white;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--text-dark);
}

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

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

.jackpot-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 32px;
  border: 2px solid var(--border-light);
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.jackpot-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange-primary);
  box-shadow: 0 12px 28px rgba(255, 107, 53, 0.2);
}

.jackpot-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--orange-primary),
    var(--yellow-accent)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 30px;
  color: white;
  position: relative;
  z-index: 2;
}

.jackpot-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}

.jackpot-card p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.jackpot-card p strong {
  color: var(--orange-primary);
  font-weight: 700;
}

.disclaimer {
  background: linear-gradient(135deg, #fff5e6, #ffe8cc);
  border: 2px solid var(--yellow-accent);
  border-radius: 16px;
  padding: 32px;
  margin: 50px 0;
}

.disclaimer h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--orange-dark);
  font-weight: 800;
}

.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-dark);
}

.disclaimer li::before {
  content: "★";
  color: var(--orange-primary);
  font-weight: bold;
  flex-shrink: 0;
  font-size: 18px;
}

.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: 52px;
  height: 52px;
  background: linear-gradient(
    135deg,
    var(--orange-primary),
    var(--yellow-accent)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.step-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--text-dark);
}

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

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

.faq-item {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 26px 30px;
  margin-bottom: 16px;
  border: 2px solid var(--border-light);
  border-left: 4px solid var(--orange-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--text-dark);
}

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

.warning-box {
  background: linear-gradient(135deg, #fff0f0, #ffe5e5);
  border: 2px solid #ff6b6b;
  border-radius: 12px;
  padding: 28px;
  margin: 32px 0;
}

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

.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: "!";
  background: #ff6b6b;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 14px;
}

.form-container {
  max-width: 480px;
  margin: 60px auto;
  background: var(--bg-white);
  padding: 44px;
  border-radius: 16px;
  border: 2px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
  font-size: 32px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 900;
  color: var(--text-dark);
}

.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: 14px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: var(--bg-cream);
  color: var(--text-dark);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange-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;
  color: var(--text-gray);
  font-size: 13px;
}

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

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

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

.content-page {
  padding: 60px 0 80px;
  background: var(--bg-white);
}

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

.content-header h1 {
  font-size: 42px;
  margin-bottom: 14px;
  font-weight: 900;
  color: var(--text-dark);
}

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

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

.content-body h2 {
  font-size: 32px;
  margin: 44px 0 18px;
  font-weight: 900;
  color: var(--text-dark);
}

.content-body h3 {
  font-size: 24px;
  margin: 32px 0 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.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(--orange-primary);
  text-decoration: underline;
}

.content-body a:hover {
  color: var(--orange-dark);
}

.info-box {
  background: #fff5e6;
  border-left: 4px solid var(--orange-primary);
  padding: 20px;
  border-radius: 8px;
  margin: 28px 0;
}

.info-box p {
  margin-bottom: 0;
  color: var(--text-gray);
}

.mpc-footer {
  background-color: var(--text-dark);
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.6;
  border-top: 4px solid var(--orange-primary);
}

.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(--yellow-accent);
}

.mpc-footer .navbar-brand {
  padding: 0;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--orange-primary),
    var(--yellow-accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 18px;
  font-weight: 800;
}

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

.mpc-footer a[href*="responsiblegambling.org"] {
  color: var(--yellow-accent);
  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(--yellow-accent);
}

.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(--orange-primary);
  background: var(--text-dark);
  color: var(--orange-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 #374151;
}

.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: 38px;
  }

  .nav-links {
    display: none;
  }
}

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

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

  .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.85);
  backdrop-filter: blur(8px);
  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(--bg-white);
  max-width: 560px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
  overflow: hidden;
  animation: slideUp 0.4s ease-out;
  border: 3px solid var(--orange-primary);
}

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

.age-modal-header {
  background: linear-gradient(
    135deg,
    var(--orange-primary),
    var(--yellow-accent)
  );
  color: white;
  padding: 36px;
  text-align: center;
}

.age-modal-header i {
  font-size: 52px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.age-modal-header h2 {
  font-size: 30px;
  font-weight: 900;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

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

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

.age-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.btn-age-confirm,
.btn-age-decline {
  flex: 1;
  padding: 18px 28px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-age-confirm {
  background: linear-gradient(
    135deg,
    var(--orange-primary),
    var(--yellow-accent)
  );
  color: white;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.btn-age-confirm:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.45);
}

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

.btn-age-decline:hover {
  background: #fff;
  border-color: var(--orange-primary);
  color: var(--orange-primary);
}

.age-modal-footer {
  background: var(--bg-cream);
  padding: 22px 36px;
  text-align: center;
  border-top: 2px solid var(--border-light);
}

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

.cookie-banner {
  position: fixed;
  bottom: -400px;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: 0 -6px 32px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: bottom 0.4s ease-out;
  border-top: 4px solid var(--orange-primary);
}

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

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

.cookie-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--orange-primary),
    var(--yellow-accent)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.cookie-icon i {
  color: white;
  font-size: 32px;
}

.cookie-text {
  flex: 1;
}

.cookie-text h4 {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-dark);
  margin: 0 0 10px 0;
}

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

.cookie-text a {
  color: var(--orange-primary);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-text a:hover {
  color: var(--orange-dark);
}

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

.btn-cookie-accept,
.btn-cookie-decline {
  padding: 14px 28px;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-cookie-accept {
  background: linear-gradient(
    135deg,
    var(--orange-primary),
    var(--yellow-accent)
  );
  color: white;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

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

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

.btn-cookie-decline:hover {
  background: white;
  border-color: var(--orange-primary);
  color: var(--orange-primary);
}

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

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

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

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

  .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: 26px;
  }

  .age-modal-header i {
    font-size: 44px;
  }

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