/* style/casino.css */
/* Page-specific styles for the casino page */

/* Body text color based on dark background */
.page-casino {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Section Padding */
.page-casino__section-padding {
  padding: 60px 20px;
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Image above content */
  align-items: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  padding-bottom: 40px;
  background: #0A0A0A; /* Fallback for background */
}

.page-casino__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 20px; /* Space between image and text */
}

.page-casino__hero-content {
  position: relative; /* Ensure content is above any potential background elements */
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.page-casino__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  color: #FFD36B; /* Glow color for emphasis */
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-casino__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main */
}

.page-casino__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  gap: 20px;
  justify-content: center;
}