/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background: #0a0a0a;
  overflow-x: hidden;
  position: relative;
}

.site-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.site-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Colors */
:root {
  --emerald: #10b981;
  --emerald-dark: #059669;
  --emerald-light: #34d399;
  --gold: #f59e0b;
  --gold-dark: #d97706;
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gray-900);
  color: var(--white);
  padding: 20px 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-links {
  display: flex;
  gap: 15px;
}

.cookie-links a {
  color: var(--emerald-light);
  text-decoration: none;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--emerald);
  color: var(--white);
}

.cookie-decline {
  background: var(--gray-600);
  color: var(--white);
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Age Verification Popup */
.age-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.age-popup.show {
  opacity: 1;
  visibility: visible;
}

.age-content {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  margin: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.age-icon {
  margin-bottom: 20px;
}

.age-icon img {
  width: 60px;
  height: 60px;
}

.age-content h3 {
  color: var(--gray-900);
  margin-bottom: 10px;
  font-size: 24px;
}

.age-content p {
  color: var(--gray-600);
  margin-bottom: 25px;
}

.age-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.age-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-confirm {
  background: var(--emerald);
  color: var(--white);
}

.age-deny {
  background: var(--gray-600);
  color: var(--white);
}

.age-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* External Link Warning Popup */
.external-link-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.external-link-popup.show {
  opacity: 1;
  visibility: visible;
}

.external-link-content {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  margin: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.external-link-icon {
  margin-bottom: 20px;
  font-size: 48px;
  color: var(--emerald);
}

.external-link-content h3 {
  color: var(--gray-900);
  margin-bottom: 15px;
  font-size: 24px;
}

.external-link-content p {
  color: var(--gray-600);
  margin-bottom: 15px;
  line-height: 1.6;
}

.external-link-subtext {
  color: var(--gray-500);
  font-size: 14px;
  font-style: italic;
}

.external-link-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

.external-link-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.external-link-confirm {
  background: var(--emerald);
  color: var(--white);
}

.external-link-cancel {
  background: var(--gray-600);
  color: var(--white);
}

.external-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Header */
.header {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo h1 {
  color: var(--emerald);
  font-size: 28px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* Navigation */
.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

/* Burger Menu */
.burger-checkbox {
  display: none;
}

.burger-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

.burger-line {
  width: 100%;
  height: 3px;
  background: var(--white);
  position: absolute;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger-line:nth-child(1) {
  top: 0;
}

.burger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger-line:nth-child(3) {
  bottom: 0;
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -1.5px;
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(2) {
  transform: scale(0);
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 50%;
  margin-bottom: -1.5px;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--gray-300);
  margin-bottom: 15px;
  line-height: 1.5;
}

.hero-trust {
  font-size: 18px;
  color: var(--emerald);
  font-weight: 600;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-300);
  font-size: 16px;
}

.feature-item i {
  color: var(--emerald);
  font-size: 20px;
}

/* Section with background */
.section-with-bg {
  position: relative;
  z-index: 0;
}

.section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.section-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.section-with-bg .container {
  position: relative;
  z-index: 2;
}

/* Offers Section */
.offers {
  padding: 80px 0;
  background: transparent;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.offers-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.offer-card {
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 30px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(16, 185, 129, 0.2);
}

.offer-left {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-right {
  flex: 0 0 50%;
}

.offer-logo {
  text-align: center;
  width: 100%;
  aspect-ratio: 15 / 8;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.offer-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
}

.offer-metrics {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--gray-400);
}

.offer-metrics-left {
  display: none;
}

.metric {
  background: rgba(16, 185, 129, 0.1);
  padding: 5px 10px;
  border-radius: 4px;
}

.offer-card h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 15px;
}

.offer-description {
  color: var(--gray-300);
  margin-bottom: 20px;
  line-height: 1.6;
}

.payment-methods {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.payment-methods i {
  font-size: 24px;
  color: var(--gray-400);
}

.offer-btn {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--emerald) 0%,
    var(--emerald-dark) 100%
  );
  color: var(--white);
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
  background: transparent;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.review-card {
  background: var(--gray-800);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.review-rating {
  display: flex;
  gap: 5px;
}

.review-rating i {
  color: var(--gold);
  font-size: 16px;
}

.review-date {
  color: var(--gray-400);
  font-size: 14px;
}

.review-text {
  color: var(--gray-300);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.6;
}

.review-author {
  color: var(--emerald);
  font-weight: 600;
  text-align: right;
}

/* Security Section */
.security {
  padding: 80px 0;
  background: transparent;
}

.security-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.security-text {
  color: var(--gray-300);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 50px;
}

.certificates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.certificate-item {
  background: var(--gray-800);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.certificate-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.certificate-icon {
  font-size: 40px;
  color: var(--emerald);
  margin-bottom: 15px;
}

.certificate-item h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 10px;
}

.certificate-item p {
  color: var(--gray-400);
  font-size: 14px;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: transparent;
}

.faq-grid {
  display: grid;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gray-800);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.faq-item h3 {
  color: var(--emerald);
  font-size: 20px;
  margin-bottom: 15px;
}

.faq-item p {
  color: var(--gray-300);
  line-height: 1.6;
}

/* Banners Section */
.banners {
  padding: 60px 0;
  background: transparent;
}

.banners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
  justify-items: center;
}

.banner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-800);
  border-radius: 8px;
  padding: 20px;
  width: 100%;
  aspect-ratio: 16 / 9;
  transition: all 0.3s ease;
  border: 1px solid rgba(16, 185, 129, 0.2);
  text-decoration: none;
}

.banner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(16, 185, 129, 0.5);
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: transparent;
}

.contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content p {
  color: var(--gray-300);
  font-size: 18px;
  margin-bottom: 30px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--gray-300);
}

.contact-item i {
  color: var(--emerald);
  font-size: 20px;
}

.contact-item a {
  color: var(--emerald);
  text-decoration: none;
  word-break: break-all;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--gray-300);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  position: relative;
  z-index: 999;
}

.responsibility-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  padding: 30px;
  background: var(--gray-800);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.responsibility-block img {
  flex-shrink: 0;
  margin-top: 5px;
}

.responsibility-text h4 {
  color: var(--emerald);
  margin-bottom: 10px;
  font-size: 18px;
}

.responsibility-text p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.responsibility-text a {
  color: var(--emerald);
  text-decoration: none;
}

.responsibility-text a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--emerald);
}

.footer-disclaimer {
  background: var(--gray-900);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.footer-disclaimer p {
  color: var(--gray-300);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.footer-disclaimer strong {
  color: var(--emerald);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 5px;
  font-size: 14px;
}

/* Legal Pages */
.legal-page {
  padding: 120px 0 80px;
  background: var(--gray-900);
  min-height: 100vh;
}

.legal-nav {
  margin-bottom: 40px;
}

.legal-nav a {
  color: var(--emerald);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legal-nav a:hover {
  text-decoration: underline;
}

.legal-page h1 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 30px;
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.legal-page h2 {
  color: var(--emerald);
  font-size: 24px;
  margin: 30px 0 15px;
}

.legal-page p {
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 20px;
}

.legal-page ul {
  color: var(--gray-300);
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-page li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 900px) {
  /* Burger Menu */
  .burger-label {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    z-index: 1100;
  }

  .burger-checkbox:checked ~ .nav {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
  }

  .nav-link {
    display: block;
    padding: 15px 20px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Hero Section Mobile */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    display: none;
  }

  .hero-trust {
    font-size: 16px;
  }

  .hero-features {
    gap: 15px;
  }

  .feature-item {
    font-size: 14px;
  }

  /* Container Mobile */
  .container {
    padding: 0 12px;
  }

  /* Offers Section Mobile */
  .offers {
    padding: 0;
  }

  .offers .container {
    padding: 15px 12px;
  }

  .offers-grid {
    gap: 12px;
    margin: 0;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .offer-card {
    display: grid !important;
    grid-template-columns: 50% 50% !important;
    gap: 0 !important;
    padding: 12px !important;
    margin: 0 !important;
    flex-direction: unset !important;
  }

  .offer-left {
    flex: none !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px;
    padding-right: 8px;
    width: 100% !important;
    align-items: flex-start !important;
  }

  .offer-logo {
    width: 100%;
    aspect-ratio: 15 / 8;
    margin-bottom: 6px;
  }

  .offer-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }

  .offer-left .offer-metrics-left {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 4px;
    font-size: 10px;
    margin: 0;
  }

  .offer-left .offer-metrics-left .metric {
    padding: 2px 5px;
    font-size: 9px;
    flex: 1;
    text-align: center;
  }

  .offer-right {
    flex: none !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px;
    padding-left: 8px;
    padding-right: 8px;
    width: 100% !important;
  }

  .offer-metrics-right {
    display: none;
  }

  .offer-description {
    font-size: 11px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }

  .payment-methods {
    gap: 4px;
    margin: 0;
  }

  .payment-methods i {
    font-size: 1.1rem;
  }

  .offer-btn {
    padding: 6px 12px;
    font-size: 11px;
    margin-top: auto;
  }

  /* Reviews Mobile */
  .reviews {
    padding: 0;
  }

  .reviews .container {
    padding: 15px 12px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0;
  }

  /* Security Mobile */
  .security {
    padding: 0;
  }

  .security .container {
    padding: 15px 12px;
  }

  .certificates {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FAQ Mobile */
  .faq {
    padding: 0;
  }

  .faq .container {
    padding: 15px 12px;
  }

  .faq-grid {
    gap: 12px;
    margin: 0;
  }

  .faq-item {
    padding: 12px;
    margin: 0;
  }

  .faq-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .faq-item p {
    font-size: 13px;
    line-height: 1.4;
  }

  /* Banners Mobile */
  .banners {
    padding: 0;
  }

  .banners .container {
    padding: 15px 12px;
  }

  .banners-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    max-width: 100% !important;
    margin: 0 !important;
    align-items: stretch !important;
  }

  .banner-item {
    padding: 12px !important;
    aspect-ratio: 16 / 9 !important;
    width: 100% !important;
    min-height: auto !important;
  }

  .banner-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  .banners-grid .banner-item:last-child:nth-child(odd) {
    grid-column: 1 / 3 !important;
    max-width: calc(50% - 5px) !important;
    justify-self: center !important;
    margin: 0 auto !important;
  }

  /* Contact Mobile */
  .contact {
    padding: 0;
  }

  .contact .container {
    padding: 15px 12px;
  }

  .contact-info {
    gap: 15px;
  }

  /* Footer Mobile */
  .responsibility-block {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    position: relative;
    z-index: 999;
  }

  .footer-links {
    gap: 20px;
  }

  /* Cookie Banner Mobile */
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .cookie-links {
    justify-content: center;
  }

  /* Legal Pages Mobile */
  .legal-page {
    padding: 100px 0 60px;
  }

  .legal-page h1 {
    font-size: 28px;
  }

  .legal-page h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  /* Further mobile optimizations */
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 24px;
  }

  .offer-card {
    grid-template-columns: 50% 50% !important;
    text-align: left;
  }

  .offer-left {
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin-bottom: 0;
  }

  .offer-right {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .offer-metrics {
    flex-direction: row;
    justify-content: space-between;
  }

  .certificates {
    grid-template-columns: 1fr;
  }

  .banners-grid {
    grid-template-columns: 1fr;
  }

  .age-content {
    padding: 30px 20px;
    margin: 15px;
  }

  .age-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .age-btn {
    width: 100%;
  }

  .external-link-content {
    padding: 30px 20px;
    margin: 15px;
  }

  .external-link-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .external-link-btn {
    width: 100%;
  }

  .footer-disclaimer {
    padding: 20px 15px;
  }

  .footer-disclaimer p {
    font-size: 13px;
  }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .cookie-banner,
  .age-popup {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .container {
    max-width: 100%;
  }
}
