body {
  font-family: 'Poppins', sans-serif;
}

/* NAVBAR BACKGROUND */
.navbar {
  background: linear-gradient(90deg, #0b0b0b, #121212);
  padding: 18px 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* LOGO */
.navbar-brand {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #f5c97a !important;
  text-transform: uppercase;
  transition: transform 0.4s ease;
}

.navbar-brand span {
  color: #ffffff;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

/* NAV LINKS */
.navbar-nav .nav-link {
  color: #eaeaea !important;
  font-size: 15px;
  letter-spacing: 0.6px;
  margin: 0 12px;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

/* UNDERLINE ANIMATION */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #f5c97a, #d4a64f);
  transition: width 0.4s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: #f5c97a !important;
}

/* CTA BUTTON */
.casino-btn {
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  color: #111;
  background: linear-gradient(135deg, #f5c97a, #d4a64f);
  box-shadow: 0 8px 20px rgba(245,201,122,0.4);
  transition: all 0.4s ease;
}

.casino-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ffd88a, #e2b45a);
  box-shadow: 0 12px 30px rgba(245,201,122,0.6);
  color: #111;
}

/* TOGGLER ICON */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}


/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  width: 100%;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.7), rgba(10,10,10,0.9)),
    url('images/casino games.jpg') center/cover no-repeat;
  padding-top: 120px; /* navbar space */
}

/* HERO CONTENT ANIMATION */
.hero-content {
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

/* TITLE */
.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-title span {
  color: #f5c97a;
  text-shadow: 0 0 25px rgba(245,201,122,0.4);
}

/* SUBTITLE */
.hero-subtitle {
  font-size: 18px;
  color: #cccccc;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* BASE BUTTON */
.hero-btn {
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.4s ease;
}

/* PRIMARY BUTTON */
.primary-btn {
  background: linear-gradient(135deg, #f5c97a, #d4a64f);
  color: #111;
  box-shadow: 0 10px 25px rgba(245,201,122,0.5);
}

.primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(245,201,122,0.8);
}

/* SECONDARY BUTTON */
.secondary-btn {
  border: 2px solid #f5c97a;
  color: #f5c97a;
  background: transparent;
}

.secondary-btn:hover {
  background: #f5c97a;
  color: #111;
  transform: translateY(-4px);
}

/* FADE-UP ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* WELCOME SECTION */
.welcome-section {
  background: #0d0d0d;
  padding: 100px 0;
}

/* CONTENT */
.welcome-content {
  animation: fadeLeft 1.2s ease forwards;
}

.welcome-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.welcome-title span {
  color: #f5c97a;
  text-shadow: 0 0 25px rgba(245,201,122,0.4);
}

.welcome-text {
  font-size: 16px;
  color: #cfcfcf;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* BUTTON */
.welcome-btn {
  margin-top: 20px;
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 600;
  background: linear-gradient(135deg, #f5c97a, #d4a64f);
  color: #111;
  box-shadow: 0 10px 25px rgba(245,201,122,0.5);
  transition: all 0.4s ease;
}

.welcome-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(245,201,122,0.8);
}

/* CARDS */
.welcome-card {
  background: linear-gradient(145deg, #141414, #0f0f0f);
  border-radius: 18px;
  padding: 30px 22px;
  height: 100%;
  border: 1px solid rgba(245,201,122,0.15);
  transition: all 0.4s ease;
}

.welcome-card h5 {
  color: #f5c97a;
  font-weight: 600;
  margin-bottom: 10px;
}

.welcome-card p {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.7;
}

.welcome-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border-color: rgba(245,201,122,0.4);
}

/* ANIMATIONS */
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .welcome-title {
    font-size: 34px;
  }
}


/* ICON WHY SECTION */
.why-icon-section {
  background: radial-gradient(circle at top, #141414, #0a0a0a);
  padding: 110px 0;
}

/* TITLES */
.icon-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
}

.icon-subtitle {
  color: #bfbfbf;
  max-width: 620px;
  margin: 12px auto 0;
}

/* CARD */
.icon-card {
  position: relative;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 60px 25px 40px;
  height: 100%;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.45s ease;
}

/* ICON CIRCLE */
.icon-circle {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5c97a, #d4a64f);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(245,201,122,0.6);
  transition: all 0.45s ease;
}

.icon-circle i {
  font-size: 32px;
  color: #111;
}

/* TEXT */
.icon-card h5 {
  margin-top: 30px;
  color: #f5c97a;
  font-weight: 600;
}

.icon-card p {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
}

/* HOVER EFFECT */
.icon-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.icon-card:hover .icon-circle {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 20px 40px rgba(245,201,122,0.9);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .icon-title {
    font-size: 34px;
  }
}


/* GAMES BACKGROUND SECTION */
.games-bg-section {
  background: #0b0b0b;
  padding: 110px 0;
}

/* TITLES */
.games-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}

.games-subtitle {
  color: #bfbfbf;
  max-width: 620px;
  margin: 12px auto 0;
}

/* CARD */
.game-bg-card {
  height: 320px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

/* DARK OVERLAY */
.game-bg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
}

/* CONTENT */
.overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: #fff;
  z-index: 2;
  transition: all 0.4s ease;
}

.overlay h5 {
  color: #f5c97a;
  font-weight: 600;
  margin-bottom: 6px;
}

.overlay p {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 18px;
}

/* PLAY BUTTON */
.play-btn {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #f5c97a;
  color: #f5c97a;
  text-decoration: none;
  transition: all 0.4s ease;
}

/* HOVER EFFECT */
.game-bg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.game-bg-card:hover .play-btn {
  background: linear-gradient(135deg, #f5c97a, #d4a64f);
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .games-title {
    font-size: 34px;
  }
  .game-bg-card {
    height: 280px;
  }
}


/* LIVE WINNING FEED */
.live-win-section {
  background: linear-gradient(180deg, #0b0b0b, #111);
  padding: 110px 0;
}

/* TITLES */
.live-win-title {
  font-size: 42px;
  font-weight: 700;
  color: #f5c97a;
}

.live-win-subtitle {
  color: #bfbfbf;
  max-width: 600px;
  margin: 10px auto 0;
}

/* WRAPPER */
.live-feed-wrapper {
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(245,201,122,0.15);
  overflow: hidden;
  max-width: 900px;
  margin: auto;
}

/* FEED */
.live-feed {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: scrollFeed 18s linear infinite;
}

/* ITEM */
.win-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.6);
  padding: 16px 22px;
  border-radius: 14px;
  font-size: 15px;
  transition: all 0.4s ease;
}

.win-item:hover {
  transform: translateX(8px);
  background: rgba(245,201,122,0.08);
}

/* TEXT */
.win-item .player {
  color: #fff;
  font-weight: 500;
}

.win-item .game {
  color: #bfbfbf;
}

.win-item .amount {
  color: #f5c97a;
  font-weight: 700;
}

/* ANIMATION */
@keyframes scrollFeed {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .win-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}


/* SUBSCRIBE SECTION */
.subscribe-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #0b0b0b, #111);
}

.subscribe-box {
  background: rgba(255,255,255,0.03);
  border-radius: 26px;
  padding: 55px;
  border: 1px solid rgba(245,201,122,0.2);
}
/* SUBSCRIBE BUTTON FIX */
.btn-gold {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  color: #111;
  background: linear-gradient(135deg, #f5c97a, #d4a64f);
  box-shadow: 0 6px 20px rgba(245,201,122,0.6);
  transition: all 0.4s ease;
}

/* HOVER EFFECT */
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245,201,122,0.9);
  background: linear-gradient(135deg, #f5d77a, #e0b85f);
  color: #111;
}

.btn-outline-gold {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #f5c97a;
  color: #f5c97a;
  background: transparent;
  transition: all 0.4s ease;
}

.btn-outline-gold:hover {
  background: #f5c97a;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,201,122,0.5);
}


/* TITLES */
.subscribe-title {
  font-size: 40px;
  color: #f5c97a;
  font-weight: 700;
}

.subscribe-subtitle {
  color: #bfbfbf;
  max-width: 520px;
  margin: 12px auto 0;
}

/* INPUTS */
.casino-input {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(245,201,122,0.3);
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
}

.casino-input:focus {
  border-color: #f5c97a;
  box-shadow: none;
  background: rgba(0,0,0,0.7);
  color: #fff;
}

/* LABELS */
.form-label {
  color: #bfbfbf;
  font-weight: 500;
}

/* CHECKBOX */
.form-check-input {
  background-color: transparent;
  border: 1px solid #f5c97a;
}

.form-check-input:checked {
  background-color: #f5c97a;
  border-color: #f5c97a;
}

.checkbox-text {
  color: #bfbfbf;
}

/* MODAL */
.casino-modal {
  background: #0b0b0b;
  border-radius: 20px;
  border: 1px solid rgba(245,201,122,0.3);
  color: #fff;
}


/* TESTIMONIALS CARDS SECTION */
.testimonials-cards {
  background: linear-gradient(180deg, #0b0b0b, #111);
  padding: 110px 0;
}

/* TITLES */
.testi-title {
  font-size: 42px;
  font-weight: 700;
  color: #f5c97a;
}

.testi-subtitle {
  color: #bfbfbf;
  max-width: 600px;
  margin: 10px auto 0;
}

/* CARD */
.testi-card {
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(245,201,122,0.15);
  transition: all 0.45s ease;
}

.testi-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
  border-color: rgba(245,201,122,0.3);
}

/* ICON */
.testi-icon {
  font-size: 40px;
  color: #f5c97a;
  margin-bottom: 18px;
  transition: transform 0.4s ease;
}

.testi-card:hover .testi-icon {
  transform: scale(1.2) rotate(5deg);
}

/* TEXT */
.testi-text {
  color: #cfcfcf;
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 18px;
}

.testi-name {
  color: #f5c97a;
  font-weight: 600;
  margin-bottom: 4px;
}

.testi-role {
  color: #bfbfbf;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testi-title {
    font-size: 34px;
  }

  .testi-card {
    padding: 30px 20px;
  }
}


/* CONTACT SECTION BACKGROUND */
.contact-section {
  background: linear-gradient(180deg, #0b0b0b, #121212);
  padding: 100px 0;
  color: #fff;
}

/* HEADING */
.contact-heading {
  font-size: 40px;
  font-weight: 700;
  color: #f5c97a;
}

.contact-text {
  font-size: 16px;
  color: #bfbfbf;
  margin-top: 10px;
  line-height: 1.7;
}

/* GLASS CARD STYLE */
.glass-card {
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(245,201,122,0.2);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
}
.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(245,201,122,0.5);
}

/* INFO LEFT SIDE */
.info-heading {
  font-size: 24px;
  font-weight: 700;
  color: #f5c97a;
  margin-bottom: 10px;
}

.info-text {
  font-size: 15px;
  color: #bfbfbf;
  line-height: 1.7;
}

/* CONTACT INFO CARDS */
.small-glass {
  background: rgba(20,20,20,0.5);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(245,201,122,0.2);
  transition: all 0.3s ease;
}

.hover-gold:hover {
  box-shadow: 0 8px 25px rgba(245,201,122,0.8);
  transform: translateY(-3px);
}

/* INFO ICONS */
.info-icon {
  font-size: 28px;
  color: #f5c97a;
  flex-shrink: 0;
}

/* INFO TEXT */
.info-title {
  font-size: 18px;
  font-weight: 700;
  color: #f5c97a;
  margin-bottom: 4px;
}
.info-subtitle {
  font-size: 14px;
  color: #bfbfbf;
  line-height: 1.6;
  margin: 0;
}
.info-text {
  flex: 1;
}

/* FORM INPUTS */
.casino-input {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(245,201,122,0.3);
  color: #fff;
  border-radius: 12px;
  padding: 12px 16px;
}
.casino-input:focus {
  border-color: #f5c97a;
  background: rgba(0,0,0,0.7);
  box-shadow: none;
  color: #fff;
}

/* BUTTON */
.btn-gold {
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  color: #111;
  background: linear-gradient(135deg, #f5c97a, #d4a64f);
  box-shadow: 0 6px 20px rgba(245,201,122,0.6);
  transition: all 0.4s ease;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245,201,122,0.9);
  background: linear-gradient(135deg, #f5d77a, #e0b85f);
  color: #111;
}

/* MODAL */
.casino-modal {
  background: #0b0b0b;
  border-radius: 20px;
  border: 1px solid rgba(245,201,122,0.3);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .contact-section {
    padding: 70px 20px;
  }
}


.casino-footer .glass-card {
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  border: 1px solid rgba(245,201,122,0.2);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transition: all 0.4s ease;
}

.casino-footer .glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(245,201,122,0.5);
}

.casino-footer .footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #f5c97a;
}

.casino-footer .footer-text,
.casino-footer .footer-links a {
  color: #d0cfcf;
}

.casino-footer .footer-links a:hover {
  color: #f5c97a;
}

.casino-footer .footer-divider {
  opacity: 0.2;
}

.casino-footer .social-links a {
  font-size: 20px;
  color: #f5c97a;
  transition: transform 0.3s;
}

.casino-footer .social-links a:hover {
  transform: scale(1.2);
}

.casino-footer .casino-input {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(245,201,122,0.3);
  color: #fff;
  border-radius: 14px;
  padding: 10px 12px;
}

.casino-footer .btn-gold {
  background: linear-gradient(135deg, #f5c97a, #d4a64f);
  color: #111;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s ease;
}

.casino-footer .btn-gold:hover {
  background: linear-gradient(135deg, #f5d77a, #e0b85f);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245,201,122,0.9);
}


/* FAQ SECTION */
.faq-section {
  background: linear-gradient(180deg, #0b0b0b, #121212);
  padding: 100px 0;
  color: #fff;
}

.faq-title {
  font-size: 42px;
  font-weight: 700;
  color: #f5c97a;
}

.faq-subtitle {
  font-size: 16px;
  color: #bfbfbf;
  margin-top: 10px;
}

/* Accordion */
.accordion-button {
  background: rgba(20,20,20,0.6);
  color: #fff;
  font-weight: 500;
  border-radius: 15px;
  padding: 18px;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #f5c97a, #d4a64f);
  color: #111;
  box-shadow: 0 8px 20px rgba(245,201,122,0.5);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  background: rgba(20,20,20,0.5);
  color: #d0cfcf;
  padding: 18px;
  border-radius: 0 0 15px 15px;
  margin-top: 5px;
}

/* Glass Card */
.glass-card {
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  border: 1px solid rgba(245,201,122,0.2);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transition: all 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(245,201,122,0.5);
}
