* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

/* NAVBAR */
.navbar {
  background: #2a1a01;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #eee;
  
}

.nav-container {
  max-width: 1400px;
  margin: auto;
  padding: 14px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 26px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  color:#ffc107;
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ffc107;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-outline {
  background: #005ea8;
  color: #fff;
  border: none;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.btn-dark {
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("assets/images/hero.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}
.hero3 {
  height: 100vh;
  background: url("assets/images/hero2.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}
.hero4 {
  height: 100vh;
  background: url("assets/images/image1.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}
.hero5 {
  height: 100vh;
  background: url("assets/images/slots1.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}
.hero6 {
  height: 100vh;
  background: url("assets/images/hero1.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}
.hero7 {
  height: 100vh;
  background: url("assets/img/hero8.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}
/* ========== HERO 1 ========== */
.hero1 {
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.hero1 h1 {
  font-size: 42px;
  max-width: 900px;
  margin: auto;
  font-weight: 700;
  line-height: 1.3;
}
.hero3 h1 {
  font-size: 42px;
  max-width: 900px;
  margin: auto;
  font-weight: 700;
  line-height: 1.3;
  color: white;
}
.hero4 h1 {
  font-size: 42px;
  max-width: 900px;
  margin: auto;
  font-weight: 700;
  line-height: 1.3;
  color: white;
}
.hero5 h1 {
  font-size: 42px;
  max-width: 900px;
  margin: auto;
  font-weight: 700;
  line-height: 1.3;
  color: white;
}
.hero6 h1 {
  font-size: 42px;
  max-width: 900px;
  margin: auto;
  font-weight: 700;
  line-height: 1.3;
  color: white;
}

.hero1 p {
  margin-top: 15px;
  font-size: 18px;
  color: #d6e6f2;
}

.hero3 p {
  margin-top: 15px;
  font-size: 18px;
  color: #d6e6f2;
}
.hero4 p {
  margin-top: 15px;
  font-size: 18px;
  color: #d6e6f2;
}
.hero5 p {
  margin-top: 15px;
  font-size: 18px;
  color: #d6e6f2;
}
.hero6 p {
  margin-top: 15px;
  font-size: 18px;
  color: #d6e6f2;
}

/* ========== HERO 2 SECTIONS ========== */
.hero2 {
  width: 100%;
  padding: 80px 20px;
  background: #fff;
}

.hero2 > div {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.hero2 .image {
  flex: 1;
  text-align: center;
}

.hero2 .image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* TEXT */
.hero2 .para {
  flex: 1;
}

.hero2 h3 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #203a43;
  font-weight: 700;
}

.hero2 h5 {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  font-weight: 400;
}

/* ALTERNATE LAYOUT */
.hero2:nth-child(even) > div {
  flex-direction: row-reverse;
}
button {
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #fff;
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  border: none;
  border-radius: 50px;
  cursor: pointer;

  box-shadow: 0 10px 25px rgba(255, 179, 71, 0.4);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* SHINE EFFECT */
button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 193, 7, 0.9),
    transparent
  );
  transition: 0.5s;
}

/* HOVER */
button:hover::before {
  left: 100%;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 179, 71, 0.6);
}

/* ACTIVE */
button:active {
  transform: scale(0.96);
}

.game-show {
  padding: 80px 20px;
  background: #fff;
  font-family: "Josefin Sans", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.game-show h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

.divider {
  display: block;
  width: 60px;
  height: 2px;
  background: #00a6c9;
  margin: 15px auto 30px;
}

.intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
  color: #4a5d73;
  line-height: 1.7;
  font-size: 16px;
}

.game-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.game-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 6px;
}

.game-text h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.game-text p {
  color: #4a5d73;
  line-height: 1.7;
  margin-bottom: 18px;
}

.learn-more {
  display: inline-block;
  margin-top: 10px;
  color: #00a6c9;
  text-decoration: none;
  font-weight: 600;
}

.learn-more:hover {
  text-decoration: underline;
}
.cg1{
  position: relative;
  margin-top:65px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.casino-section {
  background: radial-gradient(circle at top, #1a1f4a, #0b0f2a);
  padding: 80px 8%;
  color: #ffffff;
}

/* ROW */
.casino-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 60px;
  margin-bottom: 100px;
}

/* REVERSE ROW */
.casino-row.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.casino-image img {
  max-width: 320px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

/* CONTENT */
.casino-content {
  max-width: 600px;
}

.casino-content h2 {
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.casino-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #d6d8ff;
  margin-bottom: 18px;
}

/* LEARN LINK */
.casino-content .learn {
  font-size: 14px;
  font-weight: 600;
  color: #ffd34d;
  text-decoration: none;
}

.casino-content .learn span {
  color: #ffffff;
}

.casino-content .learn:hover {
  text-decoration: underline;
}
/* WRAPPER */
.roulette-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* WHEEL */
.roulette-wheel {
  position: relative;
  width: 280px;
  height: 280px;
  animation: spinWheel 6s linear infinite;
}

/* WHEEL IMAGE */
.roulette-wheel img {
  width: 100%;
  height: 100%;
}

/* GOLD BALL */
.roulette-ball {
  position: absolute;
  top: 20%;
  left: 40%;

  width: 14px;
  height: 14px;

  background: radial-gradient(circle, #ffd700, #c9a200);
  border-radius: 50%;

  /* Move ball outward from center */
  transform: rotate(0deg) translateX(120px);

  /* Rotate around center */
  transform-origin: center;

  animation: spinBall 1s linear infinite;

  box-shadow: 0 0 10px rgba(255, 215, 0, 0.9);
}


/* WHEEL ROTATION */
@keyframes spinWheel {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* BALL ROTATION (FASTER) */
@keyframes spinBall {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.wheel-wrapper {
  position: relative;
  width: min(300px, 80vw);   /* responsive */
  aspect-ratio: 1 / 1;
  margin: auto;
}

/* Base image (static) */
.base-wheel {
  width: 100%;
  height: auto;
  display: block;
}

/* Spinning wheel */
.spin-wheel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10%;                /* adjust size */
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: spin 6s linear infinite;
}

/* Rotation animation */
@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}


.contact-section {
  background: radial-gradient(circle at center, #111827, #000);
  padding: 80px 20px;
  color: #fff;
  height: 100vh;
  font-family: Arial, sans-serif;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.contact-left h2 {
  color: #ffd700;
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-left p {
  color: #ddd;
  max-width: 500px;
}

.map-box {
  margin-top: 40px;
  position: relative;
}

.map-box img {
  width: 100%;
  opacity: 0.7;
}

.map-pin {
  position: absolute;
  background: #ffd700;
  color: #000;
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 6px;
  max-width: 260px;
}

.pin-1 { top: 20%; left: 15%; }
.pin-2 { top: 40%; left: 55%; }

/* FORM */
.contact-form {
  background: rgba(10, 15, 30, 0.9);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.15);
}

.contact-form h3 {
  color: #ffd700;
  font-size: 28px;
  margin-bottom: 20px;
}

.small-text {
  color: #aaa;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  background: transparent;
  border: 1px solid #334155;
  border-radius: 6px;
  color: #fff;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #ffd700;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
}

.socials {
  text-align: center;
  margin-top: 30px;
}

.socials p {
  font-size: 12px;
  color: #aaa;
}

.icons span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  background: #ffd700;
  color: #000;
  border-radius: 50%;
  margin: 6px;
  font-weight: bold;
}

/* Form inputs */
input, textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  background: #0f1220;
  border: 1px solid #333;
  color: #fff;
  border-radius: 6px;
}

input.error, textarea.error {
  border-color: #ff4d4d;
}

/* Button */
button {
  width: 100%;
  padding: 14px;
  background: #ffc107;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
}

/* Toast */
#toast {
  position: fixed;
  top: 100px;
  right: 800px;
  background: #222;
  color: #fff;
  padding: 14px 22px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

#toast.show {
  opacity: 1;
  transform: translateY(0);
}

#toast.success {
  background: #28a745;
}

#toast.error {
  background: #dc3545;
}

/* Mobile */
@media (max-width: 600px) {
  #toast {
    right: 50%;
    transform: translate(50%, 20px);
  }
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .map-pin {
    position: static;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .contact-left h2 {
    font-size: 28px;
  }

  .contact-form {
    padding: 25px;
  }
}


/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .roulette-wheel {
    width: 220px;
    height: 220px;
  }
.btn-dark{
  display: none;
}
  .roulette-ball {
    transform-origin: center 105px;
  }
}

@media (max-width: 480px) {
  .roulette-wheel {
    width: 180px;
    height: 180px;
  }

  .roulette-ball {
    width: 12px;
    height: 12px;
    transform-origin: center 59px;
  }
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 992px) {
  .casino-row {
    flex-direction: column;
    text-align: center;
  }

  .casino-row.reverse {
    flex-direction: column;
  }

  .casino-image img {
    max-width: 260px;
  }
}

@media (max-width: 576px) {
  .casino-section {
    padding: 60px 20px;
  }

  .casino-content h2 {
    font-size: 22px;
  }

  .casino-content p {
    font-size: 14px;
  }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .game-content {
    flex-direction: column;
    gap: 40px;
  }

  .game-image img {
    max-width: 100%;
  }

  .game-text h3 {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .game-show h2 {
    font-size: 22px;
  }

  .intro {
    font-size: 15px;
  }

  .game-text h3 {
    font-size: 22px;
  }
}


/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  button {
    padding: 12px 30px;
    font-size: 15px;
  }
 
 
}
 @media (max-width: 576px) {
  .cg {
    top: 20px;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  button {
    width: 100%;
    padding: 14px;
    font-size: 14px;
  }

}


/* ========== TABLET ========== */
@media (max-width: 992px) {
  .hero1 h1 {
    font-size: 34px;
  }

  .hero2 > div {
    gap: 40px;
  }

  .hero2 h3 {
    font-size: 26px;
  }
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .hero1 {
    min-height: auto;
    padding: 80px 20px;
  }

  .hero1 h1 {
    font-size: 28px;
  }

  .hero1 p {
    font-size: 16px;
  }

  .hero2 {
    padding: 60px 20px;
  }

  .hero2 > div {
    flex-direction: column;
    text-align: center;
  }

  .hero2:nth-child(even) > div {
    flex-direction: column;
  }

  .hero2 .para {
    text-align: center;
  }
}

/* ========== SMALL MOBILE ========== */
@media (max-width: 480px) {
  .hero1 h1 {
    font-size: 24px;
  }

  .hero2 h3 {
    font-size: 22px;
  }

  .hero2 h5 {
    font-size: 15px;
  }
}
 


.hero2 {
    max-width: 100%;
     ;
}
.hero2 div{
  display: flex;
  width: 80%;
  justify-content: center;
  align-items: center;
}
.hero2 div img{
    padding-top: 50px;
    width: 500px;
}
.hero2 .para{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 50px;
}
.hero2 .para h3{
    font-size: 40px;
    font-weight: 100;
}
.hero2 .para h5{
    font-size: 17px;
    font-weight: 500;
    opacity: .5;

}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  max-width: 1000px;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-content h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
}
.offering {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}

.offering-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 60px;
  position: relative;
}

.offering-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: #ddd;
  margin: 15px auto 0;
}

/* GRID */
.offering-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px 40px;
  justify-items: center;
}

/* ITEM */
.offering-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.35s ease;
}

.offering-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #d4af37; /* gold ring */
  transition: all 0.35s ease;
}

.offering-item p {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.5px;
}

/* HOVER WOW EFFECT */
.offering-item:hover {
  transform: translateY(-10px);
}

.offering-item:hover img {
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  transform: scale(1.05);
}
.platforms {
  padding: 100px 20px 120px;
  background: #ffffff;
  text-align: center;
}

/* TITLE */
.platforms-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #000;
}

/* SUBTITLE */
.platforms-subtitle {
  font-size: 14px;
  color: #4b6cb7;
  letter-spacing: 1px;
  margin-bottom: 80px;
}

/* DEVICES */
.platforms-devices {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 60px;
 
}

/* TABLET */
.platforms-devices img {
  max-width: 320px;
  width: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* MOBILE (CENTER) */
.platforms-devices .mobile {
  max-width: 500px;
  margin-bottom: 30px;
}

/* DESKTOP */
.platforms-devices img:last-child {
  max-width: 580px;
}

/* HOVER EFFECT (SUBTLE, PREMIUM) */
.platforms-devices img:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.footer {
  background: #fff;
  padding: 80px 20px 40px;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
}

/* FOLLOW */
.footer-follow h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.divider {
  display: block;
  width: 80px;
  height: 2px;
  background: #cfe3f3;
  margin: 0 auto 30px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 50px;
}

.social-icons a {
  width: 50px;
  height: 50px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #4b6cb7, #182848);
}

/* LINE */
.footer-line {
  border: none;
  height: 1px;
  background: #e5e5e5;
  margin: 40px 0;
}

/* LOGOS */
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-logos img {
  height: 35px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-logos img:hover {
  opacity: 1;
}

/* TEXT */
.footer-text {
  max-width: 1100px;
  margin: auto;
  font-size: 12px;
  color: #5a6f8f;
  line-height: 1.8;
}

.footer-text p {
  margin-bottom: 15px;
}

.copyright {
  margin-top: 30px;
  font-size: 12px;
  color: #4b6cb7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .social-icons {
    gap: 14px;
  }

  .social-icons a {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .footer-logos {
    gap: 20px;
  }

  .footer-text {
    font-size: 11px;
  }
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .platforms-devices {
    flex-direction: column;
    gap: 40px;
  }

  .platforms-devices img,
  .platforms-devices .mobile {
    max-width: 300px;
    margin-bottom: 0;
  }
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .offering-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 576px) {
  .offering-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offering-item img {
    width: 130px;
    height: 130px;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }
/* Background slide effect */
.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffc107, #ffb300);
  transition: all 0.4s ease;
  z-index: -1;
}

/* Hover */
.nav-links a:hover::before {
  left: 0;
}

.nav-links a:hover {
  color: #000;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.7);
  transform: scale(1.08);
}
  .nav-links.active {
    transform: translateX(0);
  }
.nav-links a.active {
  background: #000;
  color: #ffc107;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.8);
}
  .hamburger {
    display: block;
    color: yellow;
    background-color: #000;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
  }
}
