/* ==================== GLOBAL STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1042 50%, #2d1b4e 100%);
  background-attachment: fixed;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      2px 2px at 20% 30%,
      rgba(255, 215, 0, 0.3),
      transparent
    ),
    radial-gradient(2px 2px at 60% 70%, rgba(255, 215, 0, 0.2), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.3), transparent);
  background-size: 200% 200%, 250% 250%, 300% 300%, 350% 350%;
  background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%;
  pointer-events: none;
  z-index: -1;
  animation: twinkle 8s ease-in-out infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

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

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a0e27;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.2rem;
}

/* ==================== MODALS ==================== */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: linear-gradient(135deg, #1a1042 0%, #2d1b4e 100%);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 50px rgba(255, 215, 0, 0.2);
}

.modal-icon {
  font-size: 4rem;
  color: #ffd700;
  margin-bottom: 20px;
}

.modal-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffd700;
}

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

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

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1042 0%, #2d1b4e 100%);
  padding: 12px 20px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  border-top: 2px solid rgba(255, 215, 0, 0.5);
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-text p {
  color: #e0e0e0;
  font-size: 0.85rem;
  margin: 0;
}

.cookie-text a {
  color: #ffd700;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand a {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

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

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #ffd700;
}

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

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

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

.burger-icon span {
  width: 28px;
  height: 3px;
  background: #ffd700;
  margin: 4px 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 3px;
}

/* ==================== HERO SECTION ==================== */
.hero {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #e0e0e0;
  margin-bottom: 50px;
}

.hero-features h2 {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 30px;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  flex: 0 1 auto;
}

.feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.feature-icon {
  font-size: 1.8rem;
  color: #ffd700;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

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

.offer-card {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.1) 0%,
    rgba(255, 215, 0, 0.05) 100%
  );
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
}

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

.casino-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.offer-details {
  flex: 1;
}

.offer-details h3 {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 10px;
}

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

.offer-rating i {
  color: #ffd700;
}

.offer-rating span {
  margin-left: 10px;
  color: #e0e0e0;
  font-weight: 600;
}

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

.offer-payments {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

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

.payment-icons {
  display: flex;
  gap: 10px;
  font-size: 1.8rem;
  color: #ffffff;
}

.offer-cta {
  flex-shrink: 0;
}

/* ==================== NEW OFFERS SECTION ==================== */
.offers-title {
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.3);
  margin-bottom: 40px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.offers-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.new-offer-card {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.1) 0%,
    rgba(255, 215, 0, 0.05) 100%
  );
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  gap: 30px;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2),
    0 0 30px rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.new-offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6),
    0 0 80px rgba(255, 215, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.6);
}

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

.offer-logo-img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.offer-logo-placeholder {
  font-size: 2rem;
  font-weight: 800;
  color: #ffd700;
  text-align: center;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.offer-metrics-mobile {
  display: none;
}

.offer-metrics-desktop {
  display: block;
}

.offer-content-column {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.offer-metrics-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #e0e0e0;
}

.metric-left,
.metric-right {
  font-weight: 600;
}

.offer-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin: 10px 0 5px 0;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.offer-bonus {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.offer-payment-icons {
  display: flex;
  gap: 12px;
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.offer-content-column .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ==================== REVIEWS SECTION ==================== */
.reviews {
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.2);
}

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

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

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

.review-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.review-rating i {
  color: #ffd700;
}

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

.review-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.review-author strong {
  color: #ffd700;
  font-size: 1.1rem;
}

.review-author span {
  color: #b0b0b0;
  font-size: 0.9rem;
}

/* ==================== SECURITY SECTION ==================== */
.security {
  padding: 80px 20px;
}

.security-certifications {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.cert-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.cert-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.6);
}

.cert-icon {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 15px;
}

.cert-item h3 {
  color: #ffd700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.cert-item p {
  color: #e0e0e0;
  font-size: 0.95rem;
}

/* ==================== FAQ SECTION ==================== */
.faq {
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.2);
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 215, 0, 0.5);
}

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

.faq-item p {
  color: #e0e0e0;
  line-height: 1.8;
}

/* ==================== BANNERS SECTION ==================== */
.banners {
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.2);
}

.banners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.banner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  aspect-ratio: 1;
}

.banner-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

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

.banner-placeholder {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 60px 30px;
  text-align: center;
  color: #b0b0b0;
}

.banner-placeholder i {
  font-size: 3rem;
  color: rgba(255, 215, 0, 0.3);
  margin-bottom: 15px;
  display: block;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.2);
}

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

.contact-content > p {
  color: #e0e0e0;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  flex-wrap: wrap;
}

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

.contact-item a {
  color: #ffd700;
  text-decoration: none;
  word-break: break-word;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item span {
  color: #e0e0e0;
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 60px 20px 30px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.responsible-gaming {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.age-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.rg-content h3 {
  color: #ffd700;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.rg-content h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.rg-content p {
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 10px;
}

.age-restriction {
  font-weight: 600;
  color: #ffd700;
}

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

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.footer-copyright {
  text-align: center;
  color: #b0b0b0;
  font-size: 0.9rem;
}

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

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

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1042 0%, #2d1b4e 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: transform 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
    transform: translateX(100%);
  }

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

  .burger-toggle:checked + .burger-icon span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

  .burger-toggle:checked + .burger-icon span:nth-child(2) {
    transform: scaleX(0);
  }

  .burger-toggle:checked + .burger-icon span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  /* Typography */
  .hero {
    padding: 60px 15px 40px;
  }

  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-features h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .section-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  /* Features */
  .features-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    max-width: 100%;
    overflow-x: auto;
  }

  .feature-item {
    justify-content: flex-start;
    padding: 8px 10px;
    flex: 1;
    min-width: 0;
  }

  .feature-icon {
    font-size: 0.9rem;
  }

  .feature-text h3 {
    font-size: 0.7rem;
    white-space: normal;
    line-height: 1.2;
  }

  /* Offers - More prominent on mobile */
  .offer-card {
    flex-direction: column;
    text-align: center;
  }

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

  .offer-details h3 {
    font-size: 2.2rem;
  }

  .offer-description {
    font-size: 1.1rem;
  }

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

  .btn-large {
    width: 100%;
    font-size: 1.3rem;
    padding: 18px;
  }

  /* Sections padding */
  .reviews,
  .security,
  .faq,
  .banners,
  .contact {
    padding: 30px 15px;
  }

  /* New Offers Mobile */
  .offers {
    padding: 30px 15px;
  }

  .offers-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .offers-container {
    gap: 12px;
  }

  .new-offer-card {
    padding: 15px 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .offer-logo-column {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
  }

  .offer-logo-img {
    max-height: 60px;
    width: 100%;
  }

  .offer-logo-placeholder {
    font-size: 1rem;
    margin-bottom: 3px;
  }

  .offer-metrics-mobile {
    display: block;
    width: 100%;
  }

  .offer-metrics-desktop {
    display: none;
  }

  .offer-content-column {
    grid-column: 2;
    gap: 6px;
  }

  .offer-metrics-row {
    font-size: 0.65rem;
    justify-content: space-between;
    gap: 3px;
    margin-bottom: 2px;
  }

  .metric-left,
  .metric-right {
    font-size: 0.65rem;
  }

  .offer-title {
    font-size: 0.85rem;
    margin: 3px 0;
  }

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

  .offer-payment-icons {
    gap: 5px;
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .offer-content-column .btn {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  /* Cookie Banner */
  .cookie-banner {
    padding: 10px 15px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .cookie-text p {
    font-size: 0.75rem;
  }

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

  .cookie-buttons .btn {
    flex: 1;
    min-width: 100px;
    padding: 8px 15px;
    font-size: 0.85rem;
  }

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

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

  /* Contact */
  .contact-item {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .nav-brand a {
    font-size: 1rem;
  }

  .hero {
    padding: 40px 15px 30px;
  }

  .hero h1 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .hero-features h2 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .section-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .features-grid {
    gap: 5px;
  }

  .feature-item {
    padding: 6px 8px;
  }

  .feature-icon {
    font-size: 0.85rem;
  }

  .feature-text h3 {
    font-size: 0.65rem;
    white-space: normal;
    line-height: 1.2;
  }

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

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

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

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

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

  .modal-buttons {
    flex-direction: column;
    width: 100%;
  }

  .modal-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .nav-brand a {
    font-size: 0.9rem;
  }

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

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