/* 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: #ffffff;
  background: #0a1628;
  min-height: 100vh;
}

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

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

.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;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

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

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ffd700;
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  transition: width 0.3s ease;
}

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

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

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

.burger-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  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;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 35, 50, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.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-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

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

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

.cookie-accept {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a1628;
}

.cookie-decline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 215, 0, 0.5);
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Age Popup */
.age-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  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-content {
  background: linear-gradient(135deg, #1a2332 0%, #2a3441 100%);
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.age-content h2 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.age-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

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

.age-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  min-width: 80px;
}

.age-yes {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a1628;
}

.age-no {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 215, 0, 0.5);
}

.age-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

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

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffd700;
  font-weight: 500;
}

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

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.section-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.offers::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

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

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

.offer-card {
  background: rgba(26, 35, 50, 0.7);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
}

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

.offer-logo-link {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

.offer-logo-link:hover {
  transform: scale(1.05);
}

.offer-logo {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2 / 1;
  background: transparent;
}

.offer-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.offer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer-ratings {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.rating-item {
  color: #ffd700;
  font-weight: 500;
}

.rating-item strong {
  font-weight: 700;
}

/* Hide ratings in left column on desktop */
.offer-left .offer-ratings {
  display: none;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.offer-bonus {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a1628;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
  position: relative;
}

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

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

.review-card {
  background: linear-gradient(135deg, #1a2332 0%, #2a3441 100%);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-rating i {
  color: #ffd700;
  font-size: 1.1rem;
}

.review-text {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.review-author {
  font-weight: 600;
  color: #ffd700;
  font-style: italic;
}

/* Security Section */
.security {
  padding: 80px 0;
  position: relative;
}

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

.security-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.security-text h3 {
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.security-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

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

.certificate-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  flex: 1;
  min-width: 200px;
}

.certificate-item i {
  font-size: 2rem;
  color: #ffd700;
  min-width: 40px;
}

.certificate-text h4 {
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.certificate-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  position: relative;
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-item {
  background: linear-gradient(135deg, #1a2332 0%, #2a3441 100%);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-item h3 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.faq-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Banners Section */
.banners {
  padding: 60px 0;
  position: relative;
}

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

.banners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.banner-link {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

.banner-link:hover {
  transform: translateY(-3px);
}

.banner-placeholder {
  background: rgba(26, 35, 50, 0.8);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 120px;
  aspect-ratio: 5 / 3;
  transition: all 0.3s ease;
}

.banner-link:hover .banner-placeholder {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.banner-placeholder img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.banner-link-uis .banner-placeholder img {
  filter: none;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  position: relative;
}

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

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

.contact-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #1a2332 0%, #2a3441 100%);
  padding: 1.5rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.contact-item a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  word-break: break-all;
}

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

/* Legal Pages */
.legal-page {
  min-height: 100vh;
  padding: 120px 0 60px;
}

.legal-page h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-content {
  background: linear-gradient(135deg, #1a2332 0%, #2a3441 100%);
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #ffd700;
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 0.5rem;
}

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

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

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

.legal-content li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

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

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

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

.legal-back .btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a1628;
  font-weight: 600;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.5);
}

.legal-back .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0a1628 0%, #1a2332 100%);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.responsibility h3 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.responsibility p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.legal-links ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.copyright p {
  margin: 0.5rem 0;
}

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

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1500;
    overflow-y: auto;
    padding-top: 100px;
  }

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

  .burger-checkbox:checked ~ .burger-label .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .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) translate(8px, -8px);
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }

  .nav-link {
    font-size: 1.3rem;
    padding: 1rem;
  }

  /* Hero Section Mobile */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

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

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

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

  .hero-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-image {
    display: none;
  }

  /* Offers Section Mobile */
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .offers {
    padding: 20px 0;
  }

  .offers-grid {
    gap: 1rem;
    margin: 0;
  }

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

  .offer-left {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    grid-column: 1;
    grid-row: 1;
  }

  .offer-logo {
    width: 100%;
    max-width: 100px;
    height: auto;
    aspect-ratio: 2 / 1;
  }

  .offer-logo img {
    width: 100%;
    height: auto;
  }

  .offer-right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    grid-column: 2;
    grid-row: 1;
  }

  /* Hide desktop ratings in right column on mobile */
  .offer-right .offer-ratings-desktop {
    display: none;
  }

  /* Show ratings in left column on mobile */
  .offer-left .offer-ratings {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    margin-top: 0.5rem;
  }

  .offer-left .offer-ratings .rating-item {
    line-height: 1.3;
  }

  .offer-left .offer-ratings .rating-item:first-child {
    font-size: 0.9rem;
    font-weight: 600;
  }

  .offer-left .offer-ratings .rating-item:not(:first-child) {
    font-size: 0.75rem;
    display: block;
  }

  .offer-left .offer-ratings .rating-item:nth-child(2) {
    margin-bottom: 0.1rem;
  }

  .offer-left .offer-ratings .rating-item:nth-child(3) {
    display: inline;
  }

  .offer-left .offer-ratings .rating-item:nth-child(2)::after {
    content: " / ";
  }

  .payment-methods {
    font-size: 1.1rem;
    gap: 0.4rem;
    margin: 0.25rem 0;
  }

  .offer-bonus {
    font-size: 0.85rem;
    margin: 0.25rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .btn-primary {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    margin-top: 0.25rem;
  }

  /* Reviews Mobile */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Security Mobile */
  .certificates {
    flex-direction: column;
    gap: 1rem;
  }

  .certificate-item {
    min-width: auto;
  }

  /* FAQ Mobile */
  .faq-item {
    padding: 1.5rem;
  }

  /* Banners Mobile */
  .banners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-items: center;
  }

  .banner-link {
    width: 100%;
    max-width: 200px;
  }

  .banner-placeholder {
    width: 100%;
    max-width: 200px;
    height: 120px;
  }

  .banners-grid .banner-link:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 200px;
  }

  /* Contact Mobile */
  .contact-item {
    padding: 1rem 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Cookie Banner Mobile */
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cookie-buttons {
    justify-content: center;
  }

  /* Remove section spacing on mobile */
  .reviews,
  .security,
  .faq,
  .contact {
    padding: 20px 0;
  }

  .banners {
    padding: 20px 0;
  }

  /* Reduce margins and padding */
  .review-card,
  .faq-item {
    margin: 0;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

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

  .offer-card {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .offer-logo {
    max-width: 80px;
  }

  .offer-ratings {
    font-size: 0.8rem;
  }

  .offer-ratings .rating-item:first-child {
    font-size: 0.85rem;
  }

  .offer-ratings .rating-item:not(:first-child) {
    font-size: 0.7rem;
  }

  .payment-methods {
    font-size: 1rem;
    gap: 0.3rem;
  }

  .offer-bonus {
    font-size: 0.8rem;
  }

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

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

  .banner-link {
    max-width: 100%;
  }

  .banner-placeholder {
    width: 100%;
    height: 100px;
    padding: 1rem;
  }

  .banners-grid .banner-link:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 200px;
  }

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

/* Smooth transitions for hover effects */
.offer-card,
.review-card,
.certificate-item,
.faq-item,
.nav-link,
.btn,
.cookie-btn,
.age-btn {
  transition: all 0.3s ease;
}

/* Loading states for images */
img {
  transition: opacity 0.3s ease;
}

img[data-src] {
  opacity: 0;
}

img.loaded {
  opacity: 1;
}

/* Focus styles for accessibility */
.nav-link:focus,
.btn:focus,
.cookie-btn:focus,
.age-btn:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}
