/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #00102a;
  color: #ffffff;
}

/* Header */
.casino-header {
  background-color: #00102a;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(178, 4, 205, 0.3);
  position: sticky;
  top: 0;
  z-index: 999;
}
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

/* Logo */
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #b204cd;
}
.logo1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #b204cd;
}

/* Navigation */
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links {
  display: flex;
  gap: 1.8rem;
}
.nav-links a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 0;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #b204cd;
  transition: width 0.4s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: #b204cd;
}

/* Call-to-Action Button */
.cta-button {
  padding: 0.6rem 1.4rem;
  background: #b204cd;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background: #9101a6;
}

.cta-button-1 {
  display: none;
  
}

/* Hide hamburger by default */
.menu-toggle {
  display: none;
}
/* Mobile-specific styling */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .logo {
    flex: 0 0 70%;
    font-size: 1.5rem;
    position: absolute;
    left: 28%;
    transform: translateX(-50%);
    text-align: left;
    flex: none;
  }

  .menu-toggle {
    flex: 0 0 30%;
    display: block;
    text-align: right;
    font-size: 2rem;
    color: #b204cd;
    cursor: pointer;
  }

  .nav-right {
    display: none;
    flex-direction: column;
    width: 30%;
    z-index: 100;
  
  }

  .nav-right.show {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-button {
    display: none;
  }
 .cta-button-1 {
  padding: 0.3rem 0.3rem;
  padding-left: 22px;
  background: #b204cd;
  color: #ffffff;
  border-radius: 8px;
  border:1px solid #b204cd;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  text-align: center !important;
  display: flex;
  font-family: poppins;
  cursor: pointer;
  
}
.cta-button-1:hover  {
  background: #9101a6;
}
}


/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  background: url('media/banner2.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,17,65,0.95));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 800px;
  padding: 2rem;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #b204cd;
}
.hero-content p {
  font-size: 1.2rem;
  color: #ffffffcc;
  margin-bottom: 2rem;
}
.hero-btn {
  background: #b204cd;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.3s ease;
}
.hero-btn:hover {
  background: #9101a6;
  transform: scale(1.05);
}

/* About Section */
.about-section {
  background-color: #00102a;
  padding: 4rem 2rem;
}
.about-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}
.about-image, .about-content {
  flex: 0 0 50%;
}
.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(178, 4, 205, 0.1);
  transition: transform 0.3s ease;
}
.about-image img:hover {
  transform: scale(1.03);
}
.about-content {
  
  align-items: center;           /* Vertically center children */
  justify-content: space-between;
  padding: 4rem 2rem;
}
.about-content h2 {
  font-size: 2rem;
  color: #b204cd;
  margin-bottom: 1rem;
}
.about-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #e0e0e0;
}
.about-content .cta-button {
  background: #b204cd;
  color: #fff;
}
.about-content .cta-button:hover {
  background: #9101a6;
}

/* Features Section */
.casino-features {
  background-color: #00102a;
  padding: 4rem 2rem;
}
.features-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.feature-card {
  background-color: #0b1e41;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(178, 4, 205, 0.05);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(178, 4, 205, 0.2);
}
.feature-icon {
  color: #b204cd;
  margin-bottom: 1rem;
  font-size: 2rem;
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.2);
}
.feature-card h3 {
  font-size: 1.3rem;
  color: #b204cd;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Studio Section */
.studio-section {
  background-color: #00102a;
  color: #fff;
  padding: 4rem 2rem;
}
.studio-container {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.studio-text {
  flex: 1;
}
.studio-text h2,
.studio-text h3 {
  color: #b204cd;
  margin-bottom: 1rem;
}
.studio-text p {
  margin-bottom: 1.2rem;
  color: #e0e0e0;
  line-height: 1.6;
}
.studio-text a {
  color: #b204cd;
  text-decoration: none;
  font-weight: 600;
}
.studio-text a:hover {
  text-decoration: underline;
}
.studio-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.studio-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(178, 4, 205, 0.15);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .features-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .about-container,
  .studio-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image,
  .about-content,
  .studio-image,
  .studio-text {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .features-wrapper {
    grid-template-columns: 1fr;
  }
}

.disclaimer-hero {
  background-color: #121a2f; /* Lighter than your previous blue */
  color: #ffffffcc;
  padding: 4rem 2rem;
  text-align: center;
}

.disclaimer-container {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-container h2 {
  font-size: 2.2rem;
  color: #b204cd;
  margin-bottom: 1rem;
  font-weight: 700;
}

.disclaimer-container p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d4d4d4;
}

.site-footer {
  background-color: #0b0f1a;
  color: #ccc;
  padding: 3rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Left: Branding */
.footer-branding {
  flex: 1;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #b204cd;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 1rem;
  color: #aaa;
  max-width: 300px;
}

/* Right: Quick Links */
.footer-links-section {
  flex: 1;
  min-width: 200px;
}

.footer-heading {
  color: #b204cd;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 0; /* Remove bottom margin */
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

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


/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: left;
  }

  .footer-branding, .footer-links-section {
    width: 100%;
  }

  .footer-heading {
    margin-top: 2rem;
  }
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
 margin-top:50px;
}
.footer-text {
  font-size: 0.95rem;
  text-align: left;
}

.footer-blank-column {
  flex: 1;
  min-width: 200px;
}

/* Slot-Box Css */
.slotbox-hero-section {
  position: relative;
  height: 400px;
  background: url('media/banner2.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.slotbox-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,17,65,0.95));
  z-index: 1;
}

.slotbox-hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 800px;
  padding: 2rem;
}

.slotbox-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #b204cd;
}

.slotbox-hero-content p {
  font-size: 1.1rem;
  color: #ffffffcc;
  margin-bottom: 2rem;
}

.rules-section {
  background-color: #121a2f;
  color: #ffffffcc;
  padding: 4rem 1.5rem;
  text-align: left;
}

.rules-container {
  max-width: 900px;
  margin: 0 auto;
}

.rules-heading {
  font-size: 2.5rem;
  color: #b204cd;
  text-align: left;
  margin-bottom: 2rem;
  font-weight: 700;
}

.rules-content h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #b204cd;
}

.rules-content p {
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.slotbox-disclaimer {
  background-color: #0a1a33;
  color: #ffffffcc;
  padding: 4rem 1.5rem;
}

.slotbox-disclaimer-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.slotbox-disclaimer-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #b204cd;
  text-align: center;
  margin-bottom: 2rem;
}

.slotbox-disclaimer-intro {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.slotbox-disclaimer-heading {
  color: #b204cd;
  margin-top: 2rem;
  font-size: 1.3rem;
}

.slotbox-disclaimer-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 0.6rem;
}
