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

:root {

  --primary-color: #0a4d68;
  --secondary-color: #088395;
  --accent-color: #05bfdb;
  --light-accent: #00ffca;
  --dark-bg: #001524;
  --light-bg: #f8fbff;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --border-color: #e2e8f0;
  --success-color: #10b981;
  --error-color: #ef4444;
  --warning-color: #f59e0b;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Lato", -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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


.age-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 77, 104, 0.97) 0%, rgba(0, 21, 36, 0.97) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(15px);
}

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

.age-modal-overlay {
  display: none;

}

.age-modal-overlay.active {
  display: flex;

}

.age-modal {
  background: white;
  padding: 45px 40px;
  border-radius: 24px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  animation: modalSlide 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlide {
  from {
    opacity: 0;
    transform: translateY(-40px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.age-modal-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 20px rgba(8, 131, 149, 0.3);
}

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

.age-modal h2 {
  color: var(--text-dark);
  font-size: 26px;
  margin-bottom: 18px;
}

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

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

.age-btn {
  flex: 1;
  min-width: 130px;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Montserrat", sans-serif;
}

.age-btn-yes {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
  box-shadow: 0 4px 15px rgba(8, 131, 149, 0.3);
}

.age-btn-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(8, 131, 149, 0.4);
}

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

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


.cookie-banner {
  position: fixed;
  bottom: -250px;
  left: 0;
  right: 0;
  background: white;
  padding: 22px;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--accent-color);
}

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

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

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

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

.cookie-text a {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.cookie-text a:hover {
  border-bottom-color: var(--secondary-color);
}

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

.cookie-btn {
  padding: 11px 26px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
  box-shadow: 0 4px 12px rgba(8, 131, 149, 0.25);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(8, 131, 149, 0.35);
}

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

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


.age-gate {
  background: linear-gradient(90deg, var(--dark-bg) 0%, var(--primary-color) 100%);
  color: white;
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.age-gate strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--light-accent);
  padding: 2px 8px;
  background: rgba(0, 255, 202, 0.15);
  border-radius: 4px;
}


.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(8, 131, 149, 0.1);
}

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

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

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.brand:hover {
  transform: scale(1.02);
}

.brand-icon {
  font-size: 32px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(8, 131, 149, 0.3));
}

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


.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary-color);
  font-size: 24px;
  transition: color 0.3s;
}

.mobile-menu-toggle:hover {
  color: var(--secondary-color);
}


.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: var(--secondary-color);
  background: rgba(8, 131, 149, 0.05);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-link {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-link:hover {
  background: rgba(8, 131, 149, 0.08);
  border-color: rgba(8, 131, 149, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  color: white;
  padding: 11px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(8, 131, 149, 0.25);
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--light-accent) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(8, 131, 149, 0.35);
}

.btn-primary span,
.btn-primary i {
  position: relative;
  z-index: 1;
}


.hero-section {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, rgba(0, 30, 50, 0.92) 0%, rgba(0, 15, 30, 0.95) 100%), url('img/hero.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(5, 191, 219, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 202, 0.04) 0%, transparent 60%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, 30px);
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 32px;
  font-weight: 600;
  color: white;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-badge i {
  font-size: 18px;
  color: var(--light-accent);
}

.hero-content h1 {
  font-size: 56px;
  color: white;
  margin-bottom: 24px;
  line-height: 1.15;
  font-weight: 800;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

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

.btn-large {
  padding: 17px 40px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.98);
  color: var(--primary-color);
  border: 2px solid transparent;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  border-color: var(--light-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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


.features-section {
  padding: 90px 0;
  background: white;
  position: relative;
}

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

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

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

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

.feature-card {
  background: white;
  padding: 38px 32px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(8, 131, 149, 0.12);
  border-color: var(--accent-color);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(8, 131, 149, 0.25);
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

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

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

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
}


.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 24px;
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 100%);
}

.auth-container {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  max-width: 480px;
  width: 100%;
  padding: 50px 40px;
  border: 1px solid var(--border-color);
}

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

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

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

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

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

.form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Lato", sans-serif;
  background: white;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(5, 191, 219, 0.1);
}

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

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

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--secondary-color);
}

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

.form-checkbox a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.form-checkbox a:hover {
  border-bottom-color: var(--secondary-color);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 6px 20px rgba(8, 131, 149, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(8, 131, 149, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

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

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

.auth-footer a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.auth-footer a:hover {
  border-bottom-color: var(--secondary-color);
}


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

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

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

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

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

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

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

.content-section h3 {
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 16px;
  margin-top: 30px;
  font-weight: 600;
}

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

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

.content-section li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: var(--text-light);
}

.content-section a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.content-section a:hover {
  border-bottom-color: var(--secondary-color);
}

.info-box {
  background: linear-gradient(135deg, rgba(5, 191, 219, 0.05), rgba(0, 255, 202, 0.05));
  border-left: 4px solid var(--accent-color);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 12px;
}

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

.warning-box {
  background: rgba(239, 68, 68, 0.05);
  border-left: 4px solid var(--error-color);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 12px;
}

.contact-info {
  background: var(--light-bg);
  padding: 32px;
  border-radius: 16px;
  margin-top: 40px;
  border: 1px solid var(--border-color);
}

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


.mpc-footer {
  background: var(--dark-bg);
  color: #e2e8f0;
  padding: 55px 0 28px;
}

.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: 22px;
  font-weight: 700;
  color: white;
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  margin-bottom: 18px;
}

.mpc-footer p {
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 14px;
}

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

.mpc-footer a:hover {
  color: var(--light-accent);
}

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

.label-nav {
  font-weight: 700;
  font-size: 13px;
  color: var(--light-accent);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

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

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

.age18 {
  background: var(--light-accent);
  color: var(--dark-bg);
  font-weight: 800;
  font-size: 22px;
  padding: 9px 18px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
}

.logo-trust img {
  height: 45px;
  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: 28px;
  margin-top: 35px;
}

.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: 992px) {
  .nav-links {
    gap: 4px;
  }

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

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

@media (max-width: 768px) {


  .mobile-menu-toggle {
    display: block;
    order: 3;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 28px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-wrapper.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    width: 100%;
    border-radius: 0;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 24px;
  }

  .btn-link,
  .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }


  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }

  .mobile-overlay.active {
    display: block;
  }


  .hero-section {
    padding: 70px 0 60px;
  }

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

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

  .hero-badge {
    font-size: 13px;
    padding: 9px 20px;
  }

  .hero-trust {
    gap: 16px;
  }

  .trust-item {
    font-size: 13px;
    padding: 10px 16px;
  }


  .features-section {
    padding: 60px 0;
  }

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

  .section-header h2 {
    font-size: 32px;
  }


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

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

  .cookie-btn {
    width: 100%;
  }


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

  .col-6 {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }


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

  .auth-header h1 {
    font-size: 28px;
  }


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

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


  .age-modal {
    padding: 38px 28px;
    width: 92%;
  }

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

@media (max-width: 480px) {
  .brand-text {
    font-size: 19px;
  }

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

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

  .btn-large {
    padding: 15px 30px;
    font-size: 15px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .feature-card h3 {
    font-size: 22px;
  }

  .logo-trust {
    gap: 12px;
  }

  .logo-trust img {
    height: 38px;
  }

  .age18 {
    font-size: 20px;
    padding: 8px 16px;
  }
}


@media print {

  .age-modal-overlay,
  .cookie-banner,
  .age-gate,
  .site-header,
  .hero-buttons,
  .nav-actions,
  .mpc-footer {
    display: none;
  }
}