/* style/casino.css */
/* body already has padding-top: var(--header-offset); page must not add it to __video-section */

/* Base styles for the casino page */
.page-casino {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Main text color */
  background-color: #0A0A0A; /* Body background color */
  line-height: 1.6;
  padding-bottom: 60px; /* Space before footer */
}

/* Section padding for content areas */
.page-casino__section {
  padding: 60px 20px;
  position: relative;
}

.page-casino__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px; /* Default padding for content within max-width */
  padding-right: 20px; /* Default padding for content within max-width */
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-casino__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-casino__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #FFF6D6;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-casino__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD36B; /* Auxiliary color for titles */
  line-height: 1.2;
}

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

/* Video Section */
.page-casino__video-section {
  background-color: #0A0A0A; /* Dark background */
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
}

.page-casino__video-container {
  width: 100%; /* Desktop width */
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-casino__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(242, 193, 78, 0.4); /* Glow effect */
}

.page-casino__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

/* General Section Titles and Descriptions */
.page-casino__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2C14E; /* Main color for section titles */
  text-align: center;
}

.page-casino__sub-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #FFD36B; /* Auxiliary color for sub-titles */
}