/* ===================================
   GALACTICFORTUNEHUB.COM - CSS STYLES
   Premium Portuguese Casino Aggregator
   Theme: Cosmic (Deep Black, Royal Gold, Cosmic Blue)
   =================================== */

/* CSS Variables */
:root {
  --color-black: #0a0a0a;
  --color-deep-black: #000000;
  --color-dark-gray: #1a1a1a;
  --color-gold: #ffd700;
  --color-gold-light: #ffe34d;
  --color-gold-dark: #b8860b;
  --color-blue: #1e3a8a;
  --color-cosmic-blue: #2563eb;
  --color-cosmic-blue-light: #60a5fa;
  --color-white: #ffffff;
  --color-gray-light: #e5e7eb;
  --color-gray: #9ca3af;

  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --transition-smooth: all 0.3s ease;
  --transition-burger: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--color-deep-black);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Site Background Image */
.site-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.15;
  pointer-events: none;
}

/* Cosmic Background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at top,
      rgba(37, 99, 235, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom,
      rgba(255, 215, 0, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(2px 2px at 20% 30%, white, transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(255, 215, 0, 0.8), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(37, 99, 235, 0.8), transparent),
    radial-gradient(1px 1px at 80% 10%, white, transparent),
    radial-gradient(2px 2px at 90% 60%, rgba(255, 215, 0, 0.6), transparent),
    radial-gradient(1px 1px at 33% 80%, white, transparent),
    radial-gradient(1px 1px at 15% 90%, rgba(37, 99, 235, 0.6), transparent);
  background-size: 200% 200%, 200% 200%, 200px 200px, 300px 300px, 250px 250px,
    150px 150px, 350px 350px, 180px 180px, 220px 220px;
  background-position: 50% 50%;
  background-repeat: repeat;
  animation: cosmicMove 60s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes cosmicMove {
  0%,
  100% {
    background-position: 50% 50%, 50% 50%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%,
      0% 0%, 0% 0%;
  }
  50% {
    background-position: 60% 40%, 40% 60%, 100% 100%, 50% 50%, 80% 20%, 30% 70%,
      60% 90%, 90% 30%, 20% 80%;
  }
}

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

/* ===================================
 AGE VERIFICATION MODAL
 =================================== */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

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

.age-modal-content {
  background: linear-gradient(
    135deg,
    var(--color-dark-gray) 0%,
    var(--color-black) 100%
  );
  border: 2px solid var(--color-gold);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.3), 0 0 100px rgba(37, 99, 235, 0.2);
  animation: modalAppear 0.5s ease-out;
}

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

.age-modal-icon {
  font-size: 80px;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.age-modal-content h2 {
  color: var(--color-gold);
  font-size: 32px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.age-modal-content p {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--color-gray-light);
}

.age-modal-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.age-btn {
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.age-btn-yes {
  background: linear-gradient(
    135deg,
    var(--color-gold) 0%,
    var(--color-gold-dark) 100%
  );
  color: var(--color-black);
}

.age-btn-yes:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.age-btn-no {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-gray);
}

.age-btn-no:hover {
  border-color: var(--color-white);
  transform: translateY(-3px);
}

/* ===================================
 COOKIE CONSENT BANNER
 =================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--color-black) 0%,
    var(--color-dark-gray) 100%
  );
  border-top: 2px solid var(--color-gold);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -5px 30px rgba(255, 215, 0, 0.2);
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-banner.hidden {
  display: none;
}

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

.cookie-text p {
  margin: 5px 0;
  color: var(--color-gray-light);
}

.cookie-text strong {
  color: var(--color-gold);
}

.cookie-text a {
  color: var(--color-cosmic-blue-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

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

.cookie-btn {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.cookie-accept {
  background: linear-gradient(
    135deg,
    var(--color-gold) 0%,
    var(--color-gold-dark) 100%
  );
  color: var(--color-black);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.cookie-reject {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-gray);
}

.cookie-reject:hover {
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* ===================================
 HEADER & NAVIGATION
 =================================== */
.header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-gold);
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  transition: var(--transition-smooth);
}

.logo:hover {
  color: var(--color-gold-light);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-gold);
}

.nav-link:hover::after {
  width: 100%;
}

/* Burger Menu */
.burger-toggle {
  display: none;
}

.burger-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 24px;
  justify-content: space-between;
  position: relative;
  z-index: 1001;
}

.burger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-gold);
  border-radius: 3px;
  transition: var(--transition-burger);
  position: absolute;
  left: 0;
}

.burger-icon span:nth-child(1) {
  top: 0;
}

.burger-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger-icon span:nth-child(3) {
  bottom: 0;
}

/* Burger Animation */
.burger-toggle:checked ~ .burger-icon span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.burger-toggle:checked ~ .burger-icon span:nth-child(2) {
  transform: translateY(-50%) scale(0);
}

.burger-toggle:checked ~ .burger-icon span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* ===================================
 HERO SECTION
 =================================== */
.hero {
  padding: 100px 0;
  text-align: center;
  background: radial-gradient(
    ellipse at center,
    rgba(37, 99, 235, 0.1) 0%,
    transparent 70%
  );
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 22px;
  color: var(--color-gray-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.15) 0%,
    rgba(37, 99, 235, 0.15) 100%
  );
  border: 2px solid var(--color-gold);
  border-radius: 50px;
  padding: 15px 35px;
  margin-bottom: 30px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), 0 0 50px rgba(37, 99, 235, 0.2);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), 0 0 50px rgba(37, 99, 235, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5), 0 0 70px rgba(37, 99, 235, 0.3);
    transform: scale(1.02);
  }
}

.verified-icon {
  font-size: 32px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
  animation: shield-rotate 4s linear infinite;
}

@keyframes shield-rotate {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

.hero-subheading {
  font-size: 28px;
  color: var(--color-gold);
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-check {
  font-size: 28px;
}

.feature-text {
  font-size: 15px;
  color: var(--color-white);
  text-align: center;
  line-height: 1.4;
}

.hero-cta {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(
    135deg,
    var(--color-gold) 0%,
    var(--color-gold-dark) 100%
  );
  color: var(--color-black);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50px;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

/* ===================================
 SECTION COMMON STYLES
 =================================== */
.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-gray);
  text-align: center;
  margin-bottom: 50px;
}

/* ===================================
 OFFERS SECTION
 =================================== */
.offers {
  padding: 80px 0;
}

.offer-card {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.1) 0%,
    rgba(37, 99, 235, 0.1) 100%
  );
  border: 2px solid var(--color-gold);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 10px 50px rgba(255, 215, 0, 0.2),
    0 0 100px rgba(37, 99, 235, 0.1);
  transition: var(--transition-smooth);
  margin: 0 auto;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4),
    0 0 120px rgba(37, 99, 235, 0.2);
  border-color: var(--color-gold-light);
}

.offer-logo {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  background: transparent;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 215, 0, 0.3);
  padding: 15px;
}

.offer-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.1);
}

.offer-content {
  flex: 1;
}

.offer-name {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.offer-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.star {
  color: var(--color-gold);
  font-size: 20px;
}

.rating-text {
  color: var(--color-gray-light);
  font-weight: 600;
  margin-left: 10px;
}

.offer-description {
  color: var(--color-gray-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 16px;
}

.offer-payments {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-label {
  color: var(--color-cosmic-blue-light);
  font-weight: 600;
  font-size: 14px;
}

.payment-methods {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.payment-method {
  background: rgba(37, 99, 235, 0.2);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--color-white);
  border: 1px solid rgba(37, 99, 235, 0.4);
}

.offer-cta-wrapper {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.offer-cta {
  display: inline-block;
  padding: 20px 50px;
  background: linear-gradient(
    135deg,
    var(--color-gold) 0%,
    var(--color-gold-dark) 100%
  );
  color: var(--color-black);
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  border-radius: 50px;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  white-space: nowrap;
}

.offer-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.offer-disclaimer {
  font-size: 12px;
  color: var(--color-gray);
  text-align: center;
}

/* ===================================
 REVIEWS SECTION
 =================================== */
.reviews {
  padding: 80px 0;
  background: radial-gradient(
    ellipse at center,
    rgba(37, 99, 235, 0.05) 0%,
    transparent 70%
  );
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  transition: var(--transition-smooth);
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.review-stars {
  color: var(--color-gold);
  font-size: 20px;
  margin-bottom: 15px;
}

.review-text {
  color: var(--color-gray-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 2px solid var(--color-gold);
}

.review-name {
  font-weight: 600;
  color: var(--color-white);
}

.review-location {
  font-size: 14px;
  color: var(--color-gray);
}

/* ===================================
 SECURITY SECTION
 =================================== */
.security {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.security-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

.security .container {
  position: relative;
  z-index: 1;
}

.security-content {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.security-text {
  color: var(--color-gray-light);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.certificates-title {
  font-size: 32px;
  color: var(--color-cosmic-blue-light);
  text-align: center;
  margin: 60px 0 40px;
  font-weight: 600;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.certificate-item {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition-smooth);
}

.certificate-item:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: var(--color-cosmic-blue-light);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.certificate-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.certificate-name {
  font-size: 18px;
  color: var(--color-gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.certificate-description {
  font-size: 14px;
  color: var(--color-gray-light);
  line-height: 1.6;
}

/* ===================================
 BANNERS SECTION
 =================================== */
.banners {
  padding: 60px 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 215, 0, 0.03) 0%,
    transparent 70%
  );
}

.banners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}

.banner-item {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.banner-item:hover {
  background: rgba(26, 26, 26, 0.95);
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.banner-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1);
  transition: var(--transition-smooth);
}

.banner-item:hover .banner-img {
  filter: brightness(1.1);
}

/* ===================================
 FAQ SECTION
 =================================== */
.faq {
  padding: 80px 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 215, 0, 0.03) 0%,
    transparent 70%
  );
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-gold);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.15);
}

.faq-question {
  font-size: 22px;
  color: var(--color-gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-answer {
  color: var(--color-gray-light);
  line-height: 1.8;
  font-size: 16px;
}

/* ===================================
 CONTACT SECTION
 =================================== */
.contact {
  padding: 80px 0;
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-text {
  color: var(--color-gray-light);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid var(--color-gold);
  border-radius: 15px;
  padding: 25px;
  flex-wrap: wrap;
}

.email-icon {
  font-size: 32px;
}

.email-link {
  color: var(--color-gold);
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  transition: var(--transition-smooth);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.email-link:hover {
  color: var(--color-gold-light);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* ===================================
 FOOTER
 =================================== */
.footer {
  background: var(--color-black);
  border-top: 2px solid var(--color-gold);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-responsible {
  margin-bottom: 40px;
}

.responsible-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.responsible-icon {
  flex-shrink: 0;
}

.icon-18 {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.responsible-text {
  flex: 1;
}

.responsible-title {
  font-size: 28px;
  color: var(--color-gold);
  margin-bottom: 10px;
  font-weight: 700;
}

.responsible-subtitle {
  font-size: 18px;
  color: var(--color-cosmic-blue-light);
  margin-bottom: 15px;
  font-weight: 600;
}

.responsible-description {
  color: var(--color-gray-light);
  line-height: 1.8;
  font-size: 15px;
}

.responsible-description a {
  color: var(--color-cosmic-blue-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.responsible-description a:hover {
  color: var(--color-gold);
}

.footer-disclaimer {
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
}

.footer-disclaimer p {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--color-gray);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 14px;
}

.footer-link:hover {
  color: var(--color-gold);
}

.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-copyright p {
  color: var(--color-gray);
  font-size: 14px;
}

/* ===================================
 RESPONSIVE DESIGN
 =================================== */

@media (max-width: 900px) {
  /* Burger Menu */
  .burger-icon {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 20px;
    border-left: 2px solid var(--color-gold);
    transition: right 0.4s ease;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
  }

  .burger-toggle:checked ~ .nav {
    right: 0;
  }

  .nav-link {
    font-size: 20px;
    padding: 10px 0;
  }

  /* Hero Section */
  .hero {
    padding: 60px 0;
  }

  .hero-image,
  .security-image {
    opacity: 0.08;
  }

  .site-background {
    opacity: 0.1;
  }

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

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-verified-badge {
    flex-direction: column;
    gap: 10px;
    padding: 12px 25px;
  }

  .verified-icon {
    font-size: 28px;
  }

  .hero-subheading {
    font-size: 20px;
    text-align: center;
  }

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

  .feature-item {
    flex-direction: row;
    text-align: left;
    padding: 15px;
  }

  .feature-text {
    text-align: left;
    font-size: 16px;
  }

  /* Offers Section - Make larger on mobile */
  .offer-card {
    flex-direction: column;
    padding: 30px 25px;
    gap: 25px;
  }

  .offer-logo {
    width: 120px;
    height: 120px;
  }

  .offer-name {
    font-size: 28px;
    text-align: center;
  }

  .offer-rating {
    justify-content: center;
  }

  .offer-description {
    font-size: 17px;
    text-align: center;
  }

  .offer-payments {
    align-items: center;
  }

  .payment-methods {
    justify-content: center;
  }

  .offer-cta {
    font-size: 22px;
    padding: 22px 55px;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Certificates */
  .certificates-grid {
    grid-template-columns: 1fr;
  }

  /* Banners */
  .banners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .banner-item {
    height: 100px;
    padding: 15px;
  }

  /* Contact Section */
  .contact-email {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .email-icon {
    font-size: 28px;
  }

  .email-link {
    font-size: 18px;
    word-break: break-word;
    text-align: center;
  }

  /* Footer */
  .responsible-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    gap: 20px;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  /* Age Modal */
  .age-modal-content {
    margin: 20px;
    padding: 40px 30px;
  }

  .age-modal-buttons {
    flex-direction: column;
  }

  .age-btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 32px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-verified-badge {
    padding: 10px 20px;
    gap: 8px;
  }

  .verified-icon {
    font-size: 24px;
  }

  .hero-subheading {
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .logo {
    font-size: 22px;
  }

  .offer-name {
    font-size: 24px;
  }

  /* Banners */
  .banners-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .banner-item {
    height: 90px;
    padding: 12px;
  }

  /* Contact Section */
  .contact {
    padding: 60px 0;
  }

  .contact-content {
    padding: 0 10px;
  }

  .contact-text {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .contact-email {
    padding: 18px 15px;
    gap: 10px;
  }

  .email-icon {
    font-size: 24px;
  }

  .email-link {
    font-size: 16px;
    word-break: break-all;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
