/* Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background: #000000;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Color Variables */
:root {
  --black: #000000;
  --black-light: #1a1a1a;
  --golden: #ffb700;
  --golden-dark: #d49600;
  --sapphire: #0f52ba;
  --sapphire-dark: #0a3a8a;
  --text-light: #e0e0e0;
  --text-dark: #a0a0a0;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--golden);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--golden);
}

.section-title.glow {
  text-shadow: 0 0 20px rgba(255, 183, 0, 0.5);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--golden) 0%,
    var(--golden-dark) 100%
  );
  color: var(--black);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-accept {
  background: var(--golden);
  color: var(--black);
}

.btn-accept:hover {
  background: var(--golden-dark);
}

.btn-decline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-dark);
}

.btn-decline:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-cta {
  background: linear-gradient(
    135deg,
    var(--sapphire) 0%,
    var(--sapphire-dark) 100%
  );
  color: #fff;
  font-size: 1.1rem;
  padding: 14px 35px;
}

.btn-cta.glow {
  box-shadow: 0 0 15px rgba(15, 82, 186, 0.5);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(15, 82, 186, 0.7);
}

/* Glow Effect */
.glow {
  box-shadow: 0 0 20px rgba(255, 183, 0, 0.3);
}

/* Age Modal */
.age-modal {
  display: flex;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.age-modal.hidden {
  display: none;
}

.age-modal-content {
  background: var(--black-light);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  border: 2px solid var(--golden);
}

.age-modal-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.age-modal-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.age-modal-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black-light);
  padding: 20px;
  z-index: 9999;
  border-top: 2px solid var(--golden);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  color: var(--text-light);
}

.cookie-content a {
  color: var(--golden);
  text-decoration: underline;
}

.cookie-content a:hover {
  color: var(--golden-dark);
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

/* Header & Navigation */
.header {
  background: var(--black);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--golden);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--golden);
  text-decoration: none;
  text-shadow: 0 0 10px rgba(255, 183, 0, 0.3);
}

.logo a:hover {
  color: var(--golden-dark);
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.nav a:hover {
  color: var(--golden);
}

/* Burger Menu */
.menu-toggle {
  display: none;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  width: 30px;
  height: 25px;
}

.burger-line {
  width: 100%;
  height: 3px;
  background: var(--golden);
  border-radius: 3px;
  position: absolute;
  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 Animation */
.menu-toggle:checked ~ .burger-menu .burger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu-toggle:checked ~ .burger-menu .burger-line:nth-child(2) {
  transform: scale(0);
}

.menu-toggle:checked ~ .burger-menu .burger-line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--golden);
  text-shadow: 0 0 30px rgba(255, 183, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.trust-section {
  margin-top: 50px;
}

.trust-title {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--golden);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 183, 0, 0.05);
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 183, 0, 0.2);
  flex: 0 1 auto;
  min-width: 180px;
  transition: all 0.3s ease;
}

.badge-item:hover {
  border-color: var(--golden);
  transform: translateY(-3px);
}

.badge-icon {
  font-size: 1.4rem;
  margin: 0;
}

.badge-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* Offers Section */
.offers {
  padding: 60px 0;
  background: transparent;
}

.offer-card {
  display: flex;
  gap: 30px;
  background: var(--black-light);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 183, 0, 0.2);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
}

.offer-left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.offer-logo {
  width: 100%;
  max-width: 200px;
}

.logo-placeholder {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background: rgba(255, 183, 0, 0.1);
  border: 2px dashed rgba(255, 183, 0, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-right {
  flex: 1;
}

.offer-metrics {
  margin-bottom: 20px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.offer-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--golden);
}

.offer-description {
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.6;
}

.payment-methods {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.payment-methods i {
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.payment-methods i:hover {
  color: var(--golden);
}

/* Reviews Section */
.reviews {
  padding: 60px 0;
  background: transparent;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background: var(--black);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 183, 0, 0.2);
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: var(--golden);
  transform: translateY(-5px);
}

.review-rating {
  margin-bottom: 15px;
}

.star {
  color: var(--golden);
  font-size: 1.2rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.review-author {
  font-weight: 600;
  color: var(--golden);
}

/* Security Section */
.security {
  padding: 60px 0;
  background: transparent;
}

.security-content {
  max-width: 900px;
  margin: 0 auto;
}

.security-intro {
  font-size: 1.15rem;
  margin-bottom: 25px;
  color: var(--text-light);
  line-height: 1.7;
}

.security-text {
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.7;
}

.certifications-title {
  font-size: 1.8rem;
  text-align: center;
  margin: 50px 0 30px;
  color: var(--golden);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cert-item {
  background: var(--black-light);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 183, 0, 0.2);
  transition: all 0.3s ease;
}

.cert-item:hover {
  border-color: var(--golden);
  transform: translateY(-5px);
}

.cert-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cert-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--golden);
}

.cert-item p {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.5;
}

/* FAQ Section */
.faq {
  padding: 60px 0;
  background: transparent;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--black);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--golden);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(5px);
}

.faq-question {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--golden);
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.7;
}

/* Banners Section */
.banners {
  padding: 60px 0;
  background: transparent;
}

.banners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}

.banner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-light);
  border: 1px solid rgba(255, 183, 0, 0.2);
  border-radius: 10px;
  padding: 16px;
  aspect-ratio: 3 / 1;
}

.banner-img {
  width: 80%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Offer logos fixed ratio */
.offer-logo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

/* Contact Section */
.contact {
  padding: 60px 0;
  background: transparent;
}

/* Global site background container */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.site-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.contact-info {
  background: var(--black);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 183, 0, 0.2);
}

.contact-email,
.contact-website {
  margin: 15px 0;
  font-size: 1.1rem;
  color: var(--text-light);
  word-break: break-word;
}

.contact-email a {
  color: var(--golden);
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

.contact-website strong {
  color: var(--golden);
}

/* Footer */
.footer {
  background: var(--black);
  padding: 50px 0 30px;
  border-top: 2px solid var(--golden);
}

.footer-responsibility {
  margin-bottom: 40px;
}

.responsibility-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  background: var(--black-light);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 183, 0, 0.2);
}

.responsibility-icon {
  flex-shrink: 0;
}

.responsibility-text h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.responsibility-text h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.responsibility-text p {
  margin-bottom: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.age-restriction {
  font-weight: 700;
  color: var(--golden);
}

.footer-links {
  text-align: center;
  margin-bottom: 25px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--golden);
}

.footer-copyright {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 183, 0, 0.2);
  color: var(--text-dark);
}

/* Responsive Utilities */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* Responsive Design - Mobile */
@media (max-width: 900px) {
  /* Show burger menu */
  .burger-menu {
    display: flex;
  }

  /* Mobile navigation */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--black);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
    border-left: 2px solid var(--golden);
    overflow-y: auto;
  }

  .menu-toggle:checked ~ .nav {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 0;
  }

  .nav li {
    border-bottom: 1px solid rgba(255, 183, 0, 0.2);
  }

  .nav a {
    display: block;
    padding: 20px 0;
    font-size: 1.1rem;
  }

  /* Mobile utilities */
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }

  /* Hero adjustments */
  .hero {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .trust-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .trust-badges {
    gap: 6px;
    flex-wrap: nowrap;
    overflow: hidden;
    justify-content: space-between;
  }

  .badge-item {
    padding: 8px 10px;
    min-width: 0;
    flex: 1 1 0;
  }

  .badge-icon {
    font-size: 1.1rem;
  }

  .badge-item p {
    font-size: 0.7rem;
    white-space: normal;
    line-height: 1.2;
  }

  .badge-icon {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }

  .badge-item p {
    font-size: 0.75rem;
  }

  /* Offers - Mobile Grid */
  .offers {
    padding: 30px 0;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .offer-card {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 15px;
    margin-bottom: 20px;
    gap: 15px;
  }

  .offer-left,
  .offer-right {
    flex: none;
  }

  .offer-logo {
    max-width: 150px;
    margin-bottom: 15px;
  }

  .offer-metrics {
    margin-bottom: 15px;
  }

  .metric-row {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .offer-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .offer-description {
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .payment-methods {
    font-size: 1.1rem;
    gap: 8px;
    margin-bottom: 15px;
  }

  .btn-cta {
    font-size: 0.95rem;
    padding: 10px 20px;
  }

  /* Other sections */
  .reviews,
  .security,
  .faq,
  .contact,
  .banners {
    padding: 30px 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-card {
    padding: 20px;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .cert-item {
    padding: 20px 15px;
  }

  .cert-icon {
    font-size: 2rem;
  }

  .faq-item {
    padding: 20px 15px;
  }

  .faq-question {
    font-size: 1.05rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }

  /* Banners - 2 columns */
  .banners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    justify-items: center;
    justify-content: center;
  }

  .banner-item {
    width: min(45vw, 220px);
  }

  /* Footer */
  .responsibility-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20px;
  }

  .responsibility-text h3 {
    font-size: 1.3rem;
  }

  .responsibility-text h4 {
    font-size: 1rem;
  }

  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .offer-card {
    padding: 12px;
  }

  .offer-logo {
    max-width: 120px;
  }

  .badge-item {
    flex: 0 1 100%;
  }
}
