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

:root {
  --primary-color: #c41e3a;
  --secondary-color: #e74c3c;
  --accent-color: #fdeaea;
  --dark-color: #1a3a4a;
  --light-color: #f0f8ff;
  --text-color: #2d3748;
  --border-color: #cbd5e0;
  --success-color: #48bb78;
  --error-color: #f56565;
  --warning-color: #ed8936;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--text-color);
  background: linear-gradient(135deg, #f0f8ff 0%, #fdeaea 100%);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.age-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 58, 74, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
}

.age-modal-overlay.age-modal-hidden {
  display: none;
}

.age-modal {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.5s ease;
}

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

.age-modal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.age-modal-icon i {
  font-size: 40px;
  color: white;
}

.age-modal h2 {
  color: var(--dark-color);
  font-size: 28px;
  margin-bottom: 20px;
}

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

.age-modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.age-btn {
  flex: 1;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.age-btn-yes {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
}

.age-btn-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(44, 95, 124, 0.3);
}

.age-btn-no {
  background: #e2e8f0;
  color: var(--text-color);
}

.age-btn-no:hover {
  background: #cbd5e0;
}

.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  background: white;
  padding: 25px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: bottom 0.5s ease;
  border-top: 4px solid var(--primary-color);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  margin: 0;
  color: var(--text-color);
  font-size: 14px;
}

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

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

.cookie-accept {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 95, 124, 0.3);
}

.cookie-decline {
  background: #e2e8f0;
  color: var(--text-color);
}

.cookie-decline:hover {
  background: #cbd5e0;
}

.age-gate {
  background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
}

.age-gate strong {
  font-size: 18px;
  font-weight: 800;
  color: #ffd700;
}

.site-header {
  background: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  font-size: 32px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

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

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

.nav-actions {
  display: flex;
  gap: 15px;
}

.btn-link {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  padding: 10px 25px;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.btn-link:hover {
  background: var(--accent-color);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(44, 95, 124, 0.2);
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 124, 0.3);
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdeaea 0%, #f0f8ff 50%, #fdeaea 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(74, 144, 164, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  font-weight: 600;
  color: var(--primary-color);
}

.hero-badge i {
  font-size: 20px;
}

.hero-content h1 {
  font-size: 52px;
  color: var(--dark-color);
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-description {
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-large {
  padding: 18px 40px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 16px 38px;
}

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

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
  font-weight: 500;
}

.trust-item i {
  color: var(--secondary-color);
  font-size: 24px;
}

.features-section {
  padding: 80px 0;
  background: white;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 40px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-color);
}

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

.feature-card {
  background: var(--light-color);
  padding: 40px 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 95, 124, 0.15);
  border-color: var(--secondary-color);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

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

.feature-card h3 {
  font-size: 24px;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-color);
  line-height: 1.7;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.auth-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  width: 100%;
  padding: 50px 40px;
}

.auth-header {
  text-align: center;
  margin-bottom: 40px;
}

.auth-header h1 {
  font-size: 32px;
  color: var(--dark-color);
  margin-bottom: 10px;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-color);
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: "Lato", sans-serif;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 95, 124, 0.1);
}

.form-group input.error {
  border-color: var(--error-color);
}

.error-message {
  color: var(--error-color);
  font-size: 13px;
  margin-top: 5px;
  display: none;
}

.error-message.show {
  display: block;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 14px;
  color: var(--text-color);
  cursor: pointer;
}

.form-checkbox a {
  color: var(--primary-color);
  text-decoration: none;
}

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

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 95, 124, 0.3);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.auth-footer {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: var(--text-color);
}

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

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

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

.content-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 3px solid var(--accent-color);
}

.page-header h1 {
  font-size: 42px;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.page-header .last-updated {
  color: var(--text-color);
  font-size: 14px;
}

.content-section {
  margin-bottom: 40px;
}

.content-section h2 {
  font-size: 28px;
  color: var(--dark-color);
  margin-bottom: 20px;
  margin-top: 40px;
}

.content-section h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
  margin-top: 30px;
}

.content-section p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--text-color);
}

.content-section ul,
.content-section ol {
  margin-left: 30px;
  margin-bottom: 20px;
}

.content-section li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.content-section a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.content-section a:hover {
  text-decoration: underline;
}

.info-box {
  background: var(--accent-color);
  border-left: 4px solid var(--primary-color);
  padding: 20px 25px;
  margin: 30px 0;
  border-radius: 8px;
}

.info-box strong {
  color: var(--primary-color);
}

.warning-box {
  background: #fff5f5;
  border-left: 4px solid var(--error-color);
  padding: 20px 25px;
  margin: 30px 0;
  border-radius: 8px;
}

.contact-info {
  background: var(--light-color);
  padding: 30px;
  border-radius: 15px;
  margin-top: 40px;
}

.contact-info h3 {
  color: var(--dark-color);
  margin-bottom: 15px;
}

.mpc-footer {
  background: var(--dark-color);
  color: #e2e8f0;
  padding: 60px 0 30px;
}

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-12 {
  flex: 0 0 100%;
  padding: 0 15px;
}

.col-md-6 {
  flex: 0 0 50%;
  padding: 0 15px;
}

.col-6 {
  flex: 0 0 50%;
  padding: 0 15px;
}

.navbar-brand {
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  color: white;
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  margin-bottom: 20px;
}

.mpc-footer p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.mpc-footer a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mpc-footer a:hover {
  color: #ffd700;
}

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

.label-nav {
  font-weight: 700;
  font-size: 14px;
  color: #ffd700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.nav-pages a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #cbd5e0;
}

.logo-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 15px;
}

.age18 {
  background: #ffd700;
  color: var(--dark-color);
  font-weight: 800;
  font-size: 24px;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
}

.logo-trust img {
  height: 50px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.logo-trust img:hover {
  opacity: 1;
}

.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 40px;
}

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

.small {
  font-size: 13px;
}

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.fw-bold {
  font-weight: 700;
}

.fw-semibold {
  font-weight: 600;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

  .col-md-6 {
    flex: 0 0 100%;
  }

  .auth-container {
    padding: 40px 25px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .content-section h2 {
    font-size: 24px;
  }
}
