body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
}

/* HEADER */
.mobile-header {
  position: sticky;
  top: 0;
  z-index: 999;
  height: 64px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}

.logo img {
  height: 63px;
    margin-top: 5px;
    margin-left: -30px;
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp img {
  width: 26px;
}

/* HAMBURGER */
.hamburger {
  width: 24px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background:#FFCE26;;
  margin: 4px 0;
  transition: 0.3s;
}

/* CROSS ICON */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MENU */
.mobile-menu {
  position: fixed;
  top: 56px;               /* height of header */
  left: 0;
  width: 100vw;            /* always full screen width */
  /* height: calc(100dvh - 56px);  dynamic viewport height */
  background: #cfc4c4;
  display: flex;
  flex-direction: column;
  padding: 16px;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  z-index: 1;
}

.mobile-menu a {
  padding: 14px 8px;
  font-size: clamp(16px, 4vw, 18px);
  text-decoration: none;
  color: black;
}

.mobile-menu a:hover{
    background-color: black;
    color: white;
}

.mobile-menu.show {
  transform: translateX(0);
}

/* SLIDER */
.header-carousel {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.track {
  display: flex;
  transition: transform 0.8s ease;
}

.track img {
  width: 100%;
  flex: 0 0 100%;
}

.available-sites {
background-image: url("assets/availabeSites/bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;
}

.available-sites h2 {
  text-align: center;
  color: gold;
  margin-bottom: 20px;
}

.available-sites-2{
    margin-top: 70px;
    background-image: url("assets/availabeSites/37128.jpg.webp");
}

.available-sites-2 h2 {
  text-align: center;
  color: gold;
  margin-bottom: 20px;
}

.sites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 boxes per row */
  gap: 15px;
}

.site-box {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #222;
  transition: all 0.3s ease;
}

.site-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
  border-color: gold;
}



.stats-section {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.stat-box h2 {
  color: gold;
  font-size: 42px;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 16px;
}

.stats-grid .stat-box:first-child {
  grid-column: span 2;
}

.tips h3 {
  color: gold;
  font-size: 26px;
  margin-bottom: 15px;
}

.tips p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 600px;
  margin: auto;
}


/* Footer */

.site-footer {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
}

.footer-logo {
  max-width: 300px;
  margin-bottom: 15px;
}

.footer-top {
  text-align: center;
  border-bottom: 1px solid #333;
  padding-bottom: 25px;
}

.disclaimer {
  font-size: 14px;
  color: #ccc;
  margin: 10px 0;
}

.footer-links {
  display: flex;
  /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
  gap: 30px;
  padding: 30px 0;
}

.footer-links h4 {
  color: gold;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #ccc;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}


/* Service section  */

.service-section {
  background-image: url("assets/serviceArea/bg1.webp"); /* background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  position: relative;
}

.service-section-2{
  background-image: url("assets/serviceArea/bg2.webp"); /* background image */
}

.service-section-3{
  background-image: url("assets/serviceArea/bg3.webp"); /* background image */
}

.service-overlay {
  background: rgba(0, 0, 0, 0.7); /* dark overlay */
  padding: 60px 20px;
}

.service-content {
  max-width: 800px;
  margin: auto;
  text-align: center;
  color: #ffffff;
}

.service-image {
  width: 250px;
  margin-bottom: 25px;
}

.service-title {
  font-size: 32px;
  color: #ffcc00;
  margin-bottom: 20px;
  font-weight: 700;
}

.service-text {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
  text-align: justify;
}



/* ===== Proof Section ===== */
.proof-section {
  padding: 20px 15px;
  text-align: center;
  color: #fff;
}

.proof-box {
  color: #FFCE26;
  border-radius: 16px;
  padding: 18px 14px;
  margin-bottom: 15px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.6);
}

.proof-box h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.proof-section p {
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
}

/* ===== Carousel ===== */
.carousel {
  width: 70vw; /* 70% of viewport width */
  max-width: 400px; /* optional max width */
  margin: 20px auto;
  overflow: hidden;
  position: relative;
  height: 600px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel img {
  width: 100%; /* full width of container */
  flex-shrink: 0; /* prevent shrinking */
  border-radius: 16px;
  box-shadow:
    0 0 10px 3px rgba(255, 215, 0, 0.9),
    0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: contain;
}


.faq-section {
  background: #000;
  padding: 0px 20px;
  max-width: 900px;
  margin: auto;
}

.faq-title {
  text-align: center;
  color: #ffcc00;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
}

.faq-item {
  border-bottom: 1px solid #333;
  margin-bottom: 15px;
}

.faq-question {
  color: #ffcc00;
  font-size: 18px;
  padding: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.faq-question:hover {
  color: #ffd84d;
}

.icon {
  font-size: 22px;
  font-weight: bold;
  width: 20px;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #ddd;
  font-size: 15px;
  line-height: 1.6;
  padding: 0 15px;
}

/* Review Section */

.review-section {
  background: #000;
  padding: 0px 20px;
  overflow: hidden; /* 🔴 stops left-right overflow */
}

.review-title {
  text-align: center;
  color: #ffcc00;
  font-size: 36px;
  margin-bottom: 40px;
}

.review-slider {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.review-card {
  background: #fff;
  min-width: 320px;
  max-width: 320px;
  border-radius: 10px;
  padding: 20px;
  flex-shrink: 0;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.review-header h4 {
  margin: 0;
  font-size: 16px;
  color: #000;
}

.stars {
  color: #f5b301;
  font-size: 14px;
}

.review-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* Hide scrollbar (optional) */
.review-slider::-webkit-scrollbar {
  display: none;
}


.betting-section {
  background: #000;
  padding: 60px 20px;
  color: #fff;
}

.betting-container {
  max-width: 900px;
  margin: auto;
}

.betting-container h1 {
  color: #f5c400;
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 700;
}

.betting-container p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #eaeaea;
}

.betting-container .highlight {
  color: #ff4d4d;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .betting-container h1 {
    font-size: 26px;
  }

  .betting-container p {
    font-size: 15px;
  }
}


.casino-benefits {
  background: #000;
  padding: 0px 20px;
  color: #fff;
}

.casino-container {
  max-width: 1100px;
  margin: auto;
}

/* Banner */
.casino-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: radial-gradient(circle at left, #1a0000, #000);
  /* padding: 40px; */
  margin-bottom: 50px;
  border-radius: 8px;
}

.banner-text h2 {
  color: #f5c400;
  font-size: 32px;
  margin-bottom: 15px;
  text-align: left;
}

.banner-text .games {
  color: #6fd1ff;
  font-weight: 600;
  margin-bottom: 15px;
}

.banner-text ul {
  list-style: none;
  padding: 0;
}

.banner-text ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.banner-image img {
  max-width: 260px;
}

/* Benefits */
.benefits-title {
  color: #f5c400;
  font-size: 32px;
  margin-bottom: 30px;
}

.benefits-title span {
  color: #ff4d4d;
}

.benefit-item {
  margin-bottom: 30px;
}

.benefit-item h3 {
  color: #f5c400;
  font-size: 20px;
  margin-bottom: 10px;
}

.benefit-item p {
  font-size: 16px;
  line-height: 1.8;
  color: #eaeaea;
}

/* Responsive */
@media (max-width: 768px) {
  .casino-banner {
    flex-direction: column;
    text-align: left;
  }

  .banner-image img {
    margin-top: 20px;
    max-width: 300px;
  }

  .benefits-title {
    font-size: 26px;
  }
}