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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8fafc;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #065f46;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem 2rem;
  border-radius: 12px;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}

/* Header */
.header {
  background: linear-gradient(135deg, #065f46 0%, #047857 100%);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(6, 95, 70, 0.3);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fbbf24;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Navigation */
.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

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

.burger-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

.burger-label span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fbbf24;
  border-radius: 2px;
  position: absolute;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.burger-label span:nth-child(2) {
  top: 10px;
}

.burger-label span:nth-child(3) {
  top: 20px;
}

.burger-checkbox:checked ~ .burger-label span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.burger-checkbox:checked ~ .burger-label span:nth-child(2) {
  transform: scale(0);
}

.burger-checkbox:checked ~ .burger-label span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  color: #065f46;
  font-size: 0.9rem;
}

.feature-item i {
  color: #fbbf24;
  font-size: 1.2rem;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  aspect-ratio: 3/2;
  object-fit: cover;
}

/* Offers Section */
.offers {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Main Content with General Background */
.main-content {
  position: relative;
  min-height: 100vh;
}

.main-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 1;
}

.main-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  pointer-events: none;
}

.offers .container,
.reviews .container,
.security .container,
.faq .container,
.banners .container,
.contact .container {
  position: relative;
  z-index: 1;
}

.offers-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offer-card {
  display: flex;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(6, 95, 70, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(251, 191, 36, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(6, 95, 70, 0.2);
}

.offer-left {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-right {
  flex: 0 0 50%;
  padding-left: 2rem;
}

.offer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
}

.offer-logo img {
  width: 200px;
  height: 80px;
  object-fit: contain;
  background: transparent;
}

.offer-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.offer-stats-left {
  display: none;
}

.offer-stats-right {
  display: flex;
}

.stat-item {
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
}

.stat-status {
  display: block;
  font-size: 0.9rem;
  color: #059669;
  font-weight: 500;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.payment-methods i {
  font-size: 1.5rem;
  color: #374151;
}

.offer-bonus {
  color: #059669;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

/* Reviews Section */
.reviews {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

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

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.review-rating {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #374151;
}

.review-author {
  font-weight: 600;
  color: #065f46;
}

/* Security Section */
.security {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
  color: white;
}

.security-content {
  text-align: center;
}

.security-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.certificates {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.certificate-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.certificate-item i {
  font-size: 2rem;
  color: #fbbf24;
}

.certificate-info h4 {
  color: white;
  margin-bottom: 0.25rem;
}

.certificate-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #fbbf24;
}

.faq-item h3 {
  color: #065f46;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: #374151;
  line-height: 1.6;
}

/* Banners Section */
.banners {
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.banners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.banner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f2937;
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 16 / 9;
  min-height: 120px;
}

.banner-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.banner-item.banner-white img {
  filter: brightness(0) invert(1);
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-content p {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-info {
  display: flex;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-item i {
  color: #fbbf24;
  font-size: 1.5rem;
}

.contact-item a {
  color: #065f46;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-item a:hover {
  color: #047857;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0 1rem;
  text-align: center;
  position: relative;
  z-index: 1000;
}

.responsibility {
  margin-bottom: 2rem;
}

.responsibility h3 {
  color: #fbbf24;
  margin-bottom: 1rem;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

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

.legal-links a:hover {
  color: #fbbf24;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  margin-top: 2rem;
}

.age-warning {
  color: #fbbf24;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2937;
  color: white;
  padding: 1.5rem;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

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

.cookie-banner p {
  margin: 0;
  flex: 1;
}

.cookie-banner a {
  color: #fbbf24;
  text-decoration: none;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #059669;
  color: white;
}

.cookie-decline {
  background: #dc2626;
  color: white;
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Age Verification Popup */
.age-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.age-popup.show {
  opacity: 1;
  visibility: visible;
}

.age-popup-content {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-popup-content h2 {
  color: #065f46;
  margin-bottom: 1rem;
}

.age-popup-content p {
  color: #374151;
  margin-bottom: 2rem;
}

.age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-yes {
  background: #059669;
  color: white;
}

.age-no {
  background: #dc2626;
  color: white;
}

.age-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .burger-label {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #065f46;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    padding-top: 80px;
  }

  .burger-checkbox:checked ~ .nav {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }

  .nav-link {
    display: block;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
  }

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

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

  .hero-subtitle {
    display: none;
  }

  .hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .hero-features .feature-item:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 200px;
  }

  .feature-item {
    flex-direction: column;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    gap: 0.35rem;
    white-space: normal;
    text-align: center;
  }

  .feature-item i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
  }

  .feature-item span {
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .hero-image {
    display: none;
  }

  .offer-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 1rem;
  }

  .offer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0.5rem;
  }

  .offer-logo {
    margin-bottom: 0.75rem;
  }

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

  .offer-stats-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin: 0;
  }

  .offer-stats-right {
    display: none;
  }

  .offer-stats-left .stat-item:first-child {
    text-align: center;
    margin-bottom: 0.25rem;
  }

  .offer-stats-left .stat-item:first-child .stat-label {
    font-size: 0.75rem;
    display: block;
  }

  .offer-stats-left .stat-item:first-child .stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
  }

  .offer-stats-left .stat-item:nth-child(2),
  .offer-stats-left .stat-item:nth-child(3) {
    display: inline-block;
    text-align: left;
    font-size: 0.7rem;
  }

  .offer-stats-left .stat-item:nth-child(2) {
    margin-right: 0.25rem;
  }

  .offer-stats-left .stat-item:nth-child(2) .stat-label,
  .offer-stats-left .stat-item:nth-child(2) .stat-value {
    display: inline;
    font-size: 0.7rem;
  }

  .offer-stats-left .stat-item:nth-child(2) .stat-value {
    font-weight: 700;
  }

  .offer-stats-left .stat-item:nth-child(2)::after {
    content: " / ";
    margin: 0 0.25rem;
  }

  .offer-stats-left .stat-item:nth-child(3) {
    margin-top: 0;
  }

  .offer-stats-left .stat-item:nth-child(3) .stat-label,
  .offer-stats-left .stat-item:nth-child(3) .stat-status {
    display: inline;
    font-size: 0.7rem;
  }

  .offer-stats-left .stat-item:nth-child(3) .stat-status {
    font-weight: 500;
  }

  .offer-right {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    padding-left: 0.75rem;
  }

  .offer-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #065f46;
  }

  .payment-methods {
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .payment-methods i {
    font-size: 1.1rem;
  }

  .offer-bonus {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

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

  .banners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 10px;
  }

  .banner-item {
    padding: 1rem;
    min-height: 100px;
  }

  .banners-grid .banner-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc(50% - 0.375rem);
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
  }

  .offers,
  .reviews,
  .security,
  .faq,
  .contact {
    padding: 1.5rem 0;
  }

  .offers-grid {
    gap: 1rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .stat-value {
    font-size: 1.2rem;
  }

  .stat-status {
    font-size: 0.75rem;
  }

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

  .legal-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
  }

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

  .banners-grid .banner-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc(50% - 0.375rem);
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .offer-stats {
    flex-direction: column;
    gap: 0.5rem;
  }

  .payment-methods i {
    font-size: 1.2rem;
  }
}

/* Performance Optimizations */
.offer-card,
.btn,
.nav-link,
.cookie-btn,
.age-btn {
  will-change: transform;
}

.offer-card:hover,
.btn:hover,
.nav-link:hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Legal Pages Styles */
.legal-content {
  padding: 4rem 0;
  background: white;
  min-height: calc(100vh - 200px);
}

.legal-content h1 {
  color: #065f46;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.legal-content h2 {
  color: #065f46;
  margin: 2rem 0 1rem 0;
  font-size: 1.8rem;
}

.legal-content h3 {
  color: #047857;
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1.3rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #374151;
}

.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #374151;
}

.legal-content a {
  color: #f59e0b;
  text-decoration: none;
  font-weight: 500;
}

.legal-content a:hover {
  color: #fbbf24;
  text-decoration: underline;
}

.back-link {
  margin-top: 3rem;
  text-align: center;
}

.back-link a {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #065f46 0%, #047857 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-link a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 95, 70, 0.3);
}

.warning-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #fbbf24;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.warning-box h3 {
  color: #92400e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.warning-box h3::before {
  content: "⚠️";
  font-size: 1.5rem;
}

.warning-box p {
  color: #78350f;
  margin: 0;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
