/* === RESET & VARIABLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --saffron: #ff9933;
  --green: #138808;
  --navy: #1f2a40;
  --white: #ffffff;
  --gray-light: #f8f9fb;
  --text: #111;
}

/* === BODY === */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--white);
  color: var(--text);
  line-height: 1.6;
}

/* === CONTAINER === */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* === HEADER === */
.site-header {
  background-color: var(--navy);
  border-bottom: 3px solid var(--saffron);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

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

.logo-img {
  height: 36px !important;
  max-width: 140px;
  object-fit: contain;
}


.desktop-menu {
  display: flex;
  gap: 20px;
}

.desktop-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.desktop-menu a:hover {
  color: var(--saffron);
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: var(--navy);
  position: absolute;
  top: 64px;
  right: 20px;
  padding: 20px;
  border-radius: 8px;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 12px;
}

.mobile-menu.open {
  display: flex;
}

/* === HERO === */
.hero.index-hero {
  position: relative;
  background: url("/assets/bg-hero-in.png") no-repeat center/cover;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

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

.hero-title {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.cta-button.big {
  background: linear-gradient(to right, var(--saffron), var(--green));
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-button.big:hover {
  background: linear-gradient(to right, var(--green), var(--saffron));
}

/* === OFFER CARDS === */
.offers {
  padding: 60px 20px;
}

.offer-card-wrapper {
  margin-bottom: 30px;
}

.offer-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 30px 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.offer-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 30%;
}

.casino-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(1.1);
}

.casino-name {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.offer-info {
  flex: 1 1 50%;
}

.offer-rating .rating-circle {
  width: 60px;
  height: 60px;
  background-color: white;
  border: 4px solid var(--green);
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text);
}

.rating-label {
  font-size: 0.8rem;
  margin-top: 6px;
}

.offer-features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.offer-features li {
  margin-bottom: 4px;
}
/* === OFFER CARD RIBBON === */
.ribbon {
  position: absolute;
  top: -10px;
  left: -10px;
  background: linear-gradient(to right, #76c043, #4caf50);
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 6px 0 6px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 10;
  white-space: nowrap;
}

.offer-card {
  position: relative; /* Required for ribbon positioning */
}

/* === CTA BUTTONS === */
.cta-button {
  background: linear-gradient(to right, var(--saffron), var(--green));
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(to right, var(--green), var(--saffron));
}

.cta-button.small {
  font-size: 0.9rem;
  padding: 10px 20px;
}

/* === BONUS INFO SECTION === */
.bonus-info-section {
  background-color: var(--white);
  color: var(--text);
  padding: 60px 20px;
}

.bonus-info-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.bonus-info-section h2,
.bonus-info-section h3 {
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.bonus-info-section h2 {
  font-size: 2rem;
  margin-top: 0;
}

.bonus-info-section h3 {
  font-size: 1.4rem;
  margin-top: 40px;
}

.bonus-info-section p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.bonus-info-section ul {
  list-style-type: none;
  padding-left: 20px;
  margin-bottom: 30px;
}

.bonus-info-section ul li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  padding-left: 1.5em;
  position: relative;
}

.bonus-info-section ul li::before {
  content: "✅";
  position: absolute;
  left: 0;
}

/* === BONUS TABLE === */
.bonus-table-wrapper {
  margin: 40px 0;
  overflow-x: auto;
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--navy);
  color: #fff;
  font-size: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.bonus-table th,
.bonus-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}

.bonus-table th {
  background-color: #273855;
  font-weight: 600;
  color: #fff;
}

.bonus-table tr:last-child td {
  border-bottom: none;
}

/* === BACK BUTTON === */
.back-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #222;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.back-button:hover {
  background-color: #444;
}
.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  padding: 14px 0;
  cursor: pointer;
  color: var(--saffron);
}

.faq-answer {
  display: none;
  padding: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #222;
  background-color: transparent;
}

.faq-item.open .faq-answer {
  display: block;
}
@media (max-width: 768px) {
  .faq-section {
    background-color: #ffffff !important;
    color: #000 !important;
  }
  .faq-answer {
  color: #222;
  background-color: transparent;
  }
  .faq-item.open .faq-question {
  color: #e65100; /* deeper saffron or dark orange */
  border-left: 4px solid #ff6f00;
  padding-left: 12px;
  }

/* === FOOTER === */
.site-footer {
  background-color: var(--navy);
  color: #ccc;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.85rem;
}

.footer-logo-img {
  height: 36px !important;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.9;
}


.footer-about {
  max-width: 700px;
  margin: 0 auto 20px;
  font-style: italic;
  font-size: 0.9rem;
  color: #bbb;
}

.footer-newsletter h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #fff;
}

.footer-newsletter p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 12px;
}

.footer-newsletter form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-newsletter input[type="email"] {
  padding: 12px 16px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  width: 300px;
  max-width: 90%;
}

.footer-newsletter button {
  padding: 12px 24px;
  background: linear-gradient(to right, var(--saffron), var(--green));
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-newsletter button:hover {
  background: linear-gradient(to right, var(--green), var(--saffron));
}

.footer-links {
  margin: 20px 0;
}

.footer-links a {
  color: var(--saffron);
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-icons img {
  height: 28px;
  margin: 0 8px;
  opacity: 0.8;
}

.footer-legal {
  font-size: 0.75rem;
  color: #888;
  margin-top: 20px;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .hamburger {
    display: block;
  }

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

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

  .cta-button.big {
    font-size: 1rem;
    padding: 12px 20px;
  }

  .bonus-table th,
  .bonus-table td {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
    max-width: 300px;
  }
}
}