/* style/casino.css */

/* Base styles for the casino page content */
.page-casino {
  color: #FFF6D6; /* Text Main on dark body background */
  background-color: #0A0A0A; /* Body background from shared, but defining here for clarity on text contrast */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-casino__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-casino__section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* H1 font size constraint applied to all section titles for consistency */
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Main color for titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px; /* Adjust spacing as needed */
}

.page-casino__section-description {
  font-size: 1.1rem;
  color: #FFF6D6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-casino__text-block {
  font-size: 1rem;
  color: #FFF6D6;
  margin-bottom: 20px;
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-casino__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Max height for hero image */
  overflow: hidden;
  position: relative;
  z-index: 1; /* Ensure image is behind overlay if any */
}

.page-casino__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-casino__hero-content {
  position: relative; /* Relative for z-index, not absolute positioning for text */
  z-index: 2;
  padding: 20px;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over image for visual appeal, but not overlapping text */
  background: rgba(17, 17, 17, 0.7); /* Card BG with transparency */
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}