:root {
  --primary-color: #3b82f6;
  --primary-dark: #1e3a8a;
  --primary-light: #60a5fa;
  --accent-color: #f59e0b;
  --accent-light: #fbbf24;
  --accent-gradient: linear-gradient(135deg, #f59e0b, #fbbf24, #fcd34d);
  --maritime-gradient: linear-gradient(
    45deg,
    #1e3a8a 0%,
    #3b82f6 50%,
    #f59e0b 100%
  );
  --background-color: #f8fafc;
  --background-light: #ffffff;
  --background-gradient: linear-gradient(180deg, #e2e8f0 0%, #f8fafc 100%);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-light: #64748b;
  --border-color: #cbd5e1;
  --shadow-sm: 0 2px 8px rgba(30, 58, 138, 0.08);
  --shadow-md: 0 4px 16px rgba(30, 58, 138, 0.12);
  --shadow-lg: 0 8px 32px rgba(30, 58, 138, 0.16);
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 16px;
  --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(--background-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.95);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
}

.age-modal-content {
  background: var(--background-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  width: 90%;
  overflow: hidden;
  animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.age-modal-header {
  background: var(--maritime-gradient);
  padding: 30px;
  text-align: center;
}

.age-modal-header h2 {
  color: var(--background-light);
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.age-modal-body {
  padding: 40px 30px;
  text-align: center;
}
.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(--maritime-gradient);
  color: var(--background-light);
  box-shadow: var(--shadow-sm);
}
.btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-decline {
  background: var(--background-color);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}
.btn-decline:hover {
  background: #e0e6ec;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: var(--background-light);
  padding: 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  animation: slideUp 0.4s ease-out;
}

@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;
}
.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(--accent-color);
  color: var(--text-primary);
  border: none;
}
.btn-accept:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}
.btn-learn-more {
  background: transparent;
  color: var(--background-light);
  border: 2px solid var(--background-light);
}
.btn-learn-more:hover {
  background: rgba(255, 255, 255, 0.15);
}

.main-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--background-light);
  margin: 0;
  letter-spacing: -0.5px;
}
.logo .highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
.main-nav a {
  color: var(--background-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-light);
}

.hero {
  background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.9),
      rgba(30, 58, 138, 0.85)
    ),
    url("../img/1.png");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at top,
    rgba(245, 158, 11, 0.2),
    transparent 60%
  );
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 2;
}
.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-content h2 {
  font-size: 52px;
  font-weight: 800;
  color: var(--background-light);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--accent-light);
  margin-bottom: 40px;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.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(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-badge .icon {
  font-size: 24px;
  color: var(--accent-light);
}
.feature-badge span:last-child {
  color: var(--background-light);
  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(--maritime-gradient);
  color: var(--background-light);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--background-light);
  border: 2px solid var(--background-light);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}
.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;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--maritime-gradient);
  border-radius: 2px;
}

.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-gradient);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  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(--border-color);
}

.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(--maritime-gradient);
  color: var(--background-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.benefits-list strong {
  color: var(--text-primary);
  font-weight: 600;
}

.lottery-section {
  padding: 80px 0;
  background: var(--background-color);
}
.lottery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}
.lottery-card {
  background: var(--background-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  border: 2px solid transparent;
}

.lottery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
  border-color: var(--accent-color);
}

.lottery-card-header {
  background: var(--maritime-gradient);
  padding: 30px;
  text-align: center;
  position: relative;
}

.lottery-card-header h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--background-light);
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.jackpot-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--background-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.lottery-card-body {
  padding: 30px;
}
.game-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--border-color);
}

.info-item {
  text-align: center;
}
.info-item .label {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}
.info-item .value {
  display: block;
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 700;
}
.game-description h4 {
  font-size: 20px;
  color: var(--primary-dark);
  margin: 25px 0 15px;
  font-weight: 700;
}
.game-description p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 15px;
}
.game-description ul {
  margin: 15px 0 20px 20px;
  list-style: none;
}
.game-description ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.game-description ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}
.game-description strong {
  color: var(--text-primary);
  font-weight: 600;
}
.lottery-card-footer {
  padding: 0 30px 30px;
}
.btn-game {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  background: var(--maritime-gradient);
  color: var(--background-light);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-game:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.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-gradient);
  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: var(--shadow-md);
  border-color: var(--accent-color);
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--maritime-gradient);
  color: var(--background-light);
  font-size: 28px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
}

.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-light);
  padding: 35px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}
.trust-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.trust-icon i {
  background: var(--maritime-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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, #1e3a8a 0%, #3b82f6 50%, #f59e0b 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/1.png");
  background-size: cover;
  opacity: 0.3;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--background-light);
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-content p {
  font-size: 18px;
  color: var(--background-light);
  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: #121b2e;
  color: #e5e7eb;
  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: #1f2937 !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;
}
.mpc-footer a:hover {
  color: #ffffff;
}
.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: #63ac8d;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.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 {
  box-sizing: border-box;
  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 {
  box-sizing: border-box;
  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: #9ca3af;
  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;
}
.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 #f04242;
  background: #121b2e;
  color: #f04242;
  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-secondary {
  border-color: #1f2937 !important;
}
.mpc-footer .text-center.pt-3.mt-4 {
  padding-top: 18px !important;
  margin-top: 40px !important;
}
.mpc-footer .small {
  color: #9ca3af;
  line-height: 1.5;
  font-size: 13px;
}
.mpc-footer .small.fw-bold {
  color: #e5e7eb;
}
.mpc-footer .border-top {
  border-top: 1px solid #1f2937;
}
.mpc-footer .py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.mpc-footer .gy-2 {
  --bs-gutter-y: 0.5rem;
}
.mpc-footer .mb-3 {
  margin-bottom: 1rem;
}
.mpc-footer .mb-2 {
  margin-bottom: 0.5rem;
}
.mpc-footer .mb-0 {
  margin-bottom: 0;
}
.mpc-footer .mb-1 {
  margin-bottom: 0.25rem;
}
.mpc-footer .mt-4 {
  margin-top: 1.5rem;
}

.form-container {
  max-width: 500px;
  margin: 60px auto;
  background: var(--background-light);
  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;
}
.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;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.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(--maritime-gradient);
  color: var(--background-light);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}
.form-footer {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: var(--text-secondary);
}
.form-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}
.form-footer a:hover {
  color: var(--primary-dark);
  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(--accent-color);
}

.content-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  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-gradient);
  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(--primary-dark);
}

@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;
  }
  .mpc-footer .logo-trust {
    justify-content: flex-start;
    margin-top: 16px;
  }
}

@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-grid {
    grid-template-columns: 1fr;
  }
  .game-info {
    grid-template-columns: 1fr;
  }
  .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 .container-xxl {
    padding-top: 36px;
    padding-bottom: 32px;
  }
  .mpc-footer .navbar-brand {
    font-size: 16px;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }
  .mpc-footer .nav-pages > .row > .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 18px;
  }
  .mpc-footer .logo-trust {
    gap: 14px;
  }
  .mpc-footer .logo-trust .age18 {
    width: 48px;
    height: 48px;
    font-size: 17px;
  }
  .mpc-footer .logo-trust img {
    height: 30px;
  }
  .mpc-footer .small {
    font-size: 11px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .hero-content h2 {
    font-size: 28px;
  }
  .cta-content h2 {
    font-size: 32px;
  }
}
