/* ==========================================================================
   CelestialCasinoTop - Celestial Theme Stylesheet
   Colors: Onyx Black (#0F0F0F), Gold (#D4AF37), Indigo (#4B0082)
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background-color: #0f0f0f;
  background-image: url("images/Stellar Casino Network.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  overflow-x: hidden;
}

/* Dark overlay for background image with starfield */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 15, 15, 0.85);
  background-image: radial-gradient(2px 2px at 20% 30%, white, transparent),
    radial-gradient(2px 2px at 60% 70%, white, transparent),
    radial-gradient(1px 1px at 50% 50%, white, transparent),
    radial-gradient(1px 1px at 80% 10%, white, transparent),
    radial-gradient(2px 2px at 90% 60%, white, transparent),
    radial-gradient(1px 1px at 33% 75%, white, transparent),
    radial-gradient(2px 2px at 79% 53%, white, transparent);
  background-size: 100%, 200% 200%;
  background-position: 0 0, 0% 0%;
  opacity: 1;
  z-index: -1;
  animation: stars 200s linear infinite;
}

@keyframes stars {
  0% {
    background-position: 0 0, 0% 0%;
  }
  100% {
    background-position: 0 0, 100% 100%;
  }
}

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

/* ==========================================================================
   Modal Overlays (Age Verification & Cookie Banner)
   ========================================================================== */

/* Age Verification Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

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

.modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid #d4af37;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3), 0 0 60px rgba(75, 0, 130, 0.2);
  text-align: center;
  max-width: 500px;
  animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-content h2 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.modal-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e0e0e0;
}

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

.btn-primary,
.btn-secondary {
  padding: 15px 40px;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
  color: #0f0f0f;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #888;
  color: #e0e0e0;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #d4af37;
  color: #d4af37;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0.95) 0%,
    rgba(26, 26, 26, 0.98) 100%
  );
  backdrop-filter: blur(10px);
  border-top: 2px solid #d4af37;
  padding: 25px 20px;
  display: none;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner.active {
  display: block;
  animation: slideUp 0.4s ease;
}

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

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

.cookie-content h3 {
  color: #d4af37;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.cookie-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-content a {
  color: #d4af37;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-content a:hover {
  color: #ffd700;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0.95) 0%,
    rgba(26, 26, 26, 0.9) 100%
  );
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  transition: all 0.3s ease;
}

.logo:hover {
  color: #ffd700;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

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

.nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #4b0082);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #d4af37;
}

.nav a:hover::after {
  width: 100%;
}

/* Burger Menu (Hidden by default, shown on mobile) */
.burger-toggle {
  display: none;
}

.burger-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.burger-icon span {
  width: 30px;
  height: 3px;
  background: #d4af37;
  margin: 4px 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(75, 0, 130, 0.3) 0%,
    rgba(15, 15, 15, 0.8) 100%
  );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-text-section {
  margin-bottom: 40px;
}

.hero-content h1 {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 0 0 15px rgba(0, 0, 0, 0.9);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-image-section {
  margin: 50px auto;
  max-width: 900px;
}

.hero-main-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(212, 175, 55, 0.4),
    0 0 100px rgba(75, 0, 130, 0.3), 0 5px 30px rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(212, 175, 55, 0.5);
  transition: all 0.4s ease;
}

.hero-main-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 60px rgba(212, 175, 55, 0.6),
    0 0 120px rgba(75, 0, 130, 0.5), 0 10px 40px rgba(0, 0, 0, 0.9);
  border-color: #d4af37;
}

.verified-section {
  margin-top: 60px;
}

.verified-section h2 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 30px;
}

.features-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(75, 0, 130, 0.2);
  border-color: #d4af37;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.checkmark {
  font-size: 1.5rem;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 50px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   Offers Section
   ========================================================================== */
.offers {
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0) 0%,
    rgba(75, 0, 130, 0.05) 50%,
    rgba(15, 15, 15, 0) 100%
  );
}

.offer-card {
  display: flex;
  gap: 30px;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(15, 15, 15, 0.95) 100%
  );
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  align-items: center;
}

.offer-card.featured {
  border-color: #d4af37;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3), 0 0 40px rgba(75, 0, 130, 0.2);
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4),
    0 0 50px rgba(75, 0, 130, 0.3);
}

.offer-logo {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 10px;
  padding: 10px;
}

.offer-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
  transition: all 0.3s ease;
}

.offer-card:hover .offer-logo img {
  filter: drop-shadow(0 6px 12px rgba(212, 175, 55, 0.5));
  transform: scale(1.05);
}

.offer-content {
  flex: 1;
}

.offer-content h3 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 15px;
}

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

.star {
  color: #d4af37;
  font-size: 1.2rem;
}

.rating-text {
  margin-left: 10px;
  color: #b0b0b0;
  font-weight: 600;
}

.offer-description {
  color: #c0c0c0;
  margin-bottom: 20px;
  line-height: 1.8;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.payment-label {
  color: #b0b0b0;
  font-weight: 600;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-badge {
  background: rgba(75, 0, 130, 0.3);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.offer-cta {
  flex-shrink: 0;
  text-align: center;
}

.btn-cta {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
  color: #0f0f0f;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-cta:hover {
  background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
  transform: translateY(-3px);
}

.offer-terms {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #888;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews {
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0) 0%,
    rgba(26, 26, 26, 0.3) 100%
  );
}

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

.review-card {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.8) 0%,
    rgba(15, 15, 15, 0.9) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.review-rating {
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.review-text {
  color: #c0c0c0;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.review-author {
  color: #d4af37;
  font-weight: 600;
  text-align: right;
}

/* ==========================================================================
   Security Section
   ========================================================================== */
.security {
  background: linear-gradient(
    180deg,
    rgba(75, 0, 130, 0.05) 0%,
    rgba(15, 15, 15, 0) 100%
  );
}

.security-intro {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
  color: #c0c0c0;
  line-height: 1.8;
}

.security-intro p {
  margin-bottom: 20px;
}

.subsection-title {
  text-align: center;
  font-size: 2rem;
  color: #d4af37;
  margin: 60px 0 30px;
}

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

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

.trust-item,
.cert-card {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.8) 0%,
    rgba(15, 15, 15, 0.9) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.trust-item:hover,
.cert-card:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.trust-icon,
.cert-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.trust-item h4,
.cert-card h4 {
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.trust-item p,
.cert-card p {
  color: #c0c0c0;
  line-height: 1.7;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0) 0%,
    rgba(26, 26, 26, 0.3) 100%
  );
}

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

.contact-content p {
  font-size: 1.2rem;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.contact-info {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.8) 0%,
    rgba(15, 15, 15, 0.9) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 30px;
  margin-top: 30px;
}

.contact-info a {
  color: #d4af37;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #ffd700;
  text-decoration: underline;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq {
  background: linear-gradient(
    180deg,
    rgba(75, 0, 130, 0.05) 0%,
    rgba(15, 15, 15, 0) 100%
  );
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.8) 0%,
    rgba(15, 15, 15, 0.9) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #d4af37;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.faq-question {
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.faq-answer {
  color: #c0c0c0;
  line-height: 1.8;
}

/* ==========================================================================
   Banners Section
   ========================================================================== */
.banners {
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0) 0%,
    rgba(26, 26, 26, 0.3) 100%
  );
}

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

.banner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 140px;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(15, 15, 15, 0.95) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  overflow: hidden;
}

.banner-item:hover {
  border-color: #d4af37;
  background: linear-gradient(
    135deg,
    rgba(75, 0, 130, 0.2) 0%,
    rgba(26, 26, 26, 0.9) 100%
  );
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.banner-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1);
  transition: all 0.3s ease;
}

.banner-item:hover img {
  filter: brightness(1.3);
  transform: scale(1.05);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0) 0%,
    rgba(0, 0, 0, 0.95) 100%
  );
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  padding: 60px 0 30px;
  margin-top: 50px;
}

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

.responsible-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.8) 0%,
    rgba(15, 15, 15, 0.9) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
}

.responsible-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
}

.responsible-text h3 {
  color: #d4af37;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.responsible-text h4 {
  color: #b0b0b0;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.responsible-text p {
  color: #c0c0c0;
  line-height: 1.8;
  margin-bottom: 10px;
}

.age-warning {
  font-weight: 700;
  color: #d4af37;
}

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

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-copyright {
  text-align: center;
  color: #888;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */
.legal-page {
  padding: 60px 0;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  color: #d4af37;
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.legal-updated {
  color: #888;
  font-style: italic;
  margin-bottom: 40px;
}

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

.legal-section h2 {
  color: #d4af37;
  font-size: 1.8rem;
  margin-bottom: 20px;
  margin-top: 30px;
}

.legal-section h3 {
  color: #b0b0b0;
  font-size: 1.4rem;
  margin-bottom: 15px;
  margin-top: 25px;
}

.legal-section p {
  color: #c0c0c0;
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-section ul {
  margin-left: 30px;
  margin-bottom: 15px;
}

.legal-section li {
  color: #c0c0c0;
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-section a {
  color: #d4af37;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  color: #ffd700;
}

.legal-section strong {
  color: #e0e0e0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.cookie-table th,
.cookie-table td {
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 12px;
  text-align: left;
}

.cookie-table th {
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  font-weight: 600;
}

.cookie-table td {
  color: #c0c0c0;
}

/* ==========================================================================
   Responsive Design - Tablet
   ========================================================================== */
@media (max-width: 900px) {
  /* Show burger menu */
  .burger-icon {
    display: flex;
  }

  /* Hide regular nav */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(
      180deg,
      rgba(15, 15, 15, 0.98) 0%,
      rgba(26, 26, 26, 0.98) 100%
    );
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav a {
    font-size: 1.3rem;
  }

  /* When checkbox is checked, show nav */
  .burger-toggle:checked ~ .nav {
    right: 0;
  }

  /* Animate burger to X */
  .burger-toggle:checked ~ .burger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

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

  .burger-toggle:checked ~ .burger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
  }

  /* Larger CTA for offers on mobile */
  .offer-card {
    flex-direction: column;
    text-align: center;
  }

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

  .btn-cta {
    font-size: 1.4rem;
    padding: 20px 50px;
  }

  .features-row {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    width: 100%;
    max-width: 400px;
  }

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

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .banners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

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

/* ==========================================================================
   Responsive Design - Mobile
   ========================================================================== */
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-image-section {
    margin: 30px auto;
  }

  .hero-main-image {
    border-radius: 12px;
  }

  .section-title {
    font-size: 2rem;
  }

  .modal-content {
    padding: 30px 20px;
    margin: 20px;
  }

  .modal-content h2 {
    font-size: 1.5rem;
  }

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn-primary,
  .cookie-buttons .btn-secondary {
    width: 100%;
  }

  .offer-content h3 {
    font-size: 1.5rem;
  }

  .payment-methods {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

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

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

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

  .nav {
    width: 100%;
    right: -100%;
  }

  .legal-page h1 {
    font-size: 2rem;
  }

  .legal-section h2 {
    font-size: 1.5rem;
  }

  .cookie-table {
    font-size: 0.85rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 8px;
  }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
  body::before,
  body::after {
    display: none;
  }

  .header,
  .modal-overlay,
  .cookie-banner,
  .burger-icon,
  .footer-links {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .section-title,
  .legal-section h2,
  .legal-section h3 {
    color: black;
  }
}
