.page-casino {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
  font-size: 16px;
}

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

.page-casino__container--small {
  max-width: 800px;
}

/* Section Styling */
.page-casino__hero-section,
.page-casino__video-section,
.page-casino__about-section,
.page-casino__games-section,
.page-casino__promo-section,
.page-casino__getting-started-section,
.page-casino__mobile-section,
.page-casino__responsible-gaming-section,
.page-casino__faq-section,
.page-casino__partners-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden; /* Ensure no overflow issues */
}

/* Specific top padding for first section after header, assuming body handles main offset */
.page-casino__hero-section {
    padding-top: 10px; /* Small top padding as per rules, body handles header offset */
}
.page-casino__video-section {
    padding-top: 10px; /* Small top padding as per rules, body handles header offset */
}


.page-casino__section-title {
  font-size: 2.5em; /* Use em for relative sizing, will adjust with media queries */
  font-weight: 700;
  color: #F2C14E; /* Main Color */
  margin-bottom: 20px;
  text-align: left;
  line-height: 1.2;
}

.page-casino__section-title--center {
  text-align: center;
}

.page-casino__section-description {
  font-size: 1.1em;
  color: #FFF6D6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__sub-title {
    font-size: 1.8em;
    font-weight: 600;
    color: #FFD36B; /* Auxiliary Color */
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Hero Section */
.page-casino__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
  text-align: center;
  background-color: #0A0A0A; /* Background */
}

.page-casino__hero-image-wrapper {
  width: 100%;
  max-height: 70vh; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-casino__hero-content {
  position: relative; /* For z-index if needed, but no overlay */
  max-width: 900px;
  padding: 20px;
  text-align: center;
  z-index: 2;
  margin-top: -80px; /* Pull content slightly over image, but not covering text */
}

.page-casino__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* H1 font size rule applied */
  font-weight: 800;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-casino__hero-description {
  font-size: 1.2em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-casino__btn-primary,
.page-casino__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-casino__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button Gradient */
  color: #111111; /* Dark text for gradient background */
  border: 2px solid transparent;
}

.page-casino__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-casino__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Main Color */
  border: 2px solid #F2C14E; /* Border Color */
}

.page-casino__btn-secondary:hover {
  background: #F2C14E; /* Main Color */
  color: #111111; /* Dark text for main color background */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-casino__btn-primary--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

/* Video Section */
.page-casino__video-section {
  background-color: #0A0A0A; /* Background */
  text-align: center;
}

.page-casino__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Max width for the video player */
  margin: 0 auto;
  aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid #3A2A12; /* Border */
}

.page-casino__video-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

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

/* About Section */
.page-casino__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-casino__grid--two-columns {
  grid-template-columns: 1fr 1fr;
}

.page-casino__text-content p {
  margin-bottom: 15px;
  color: #FFF6D6; /* Text Main */
}

.page-casino__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-casino__image-wrapper--center {
    text-align: center;
    margin-top: 40px;
}

.page-casino__image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  min-width: 200px; /* Minimum size */
  min-height: 200px; /* Minimum size */
}

.page-casino__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-casino__feature-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #FFF6D6; /* Text Main */
}

.page-casino__feature-item strong {
    color: #F2C14E; /* Main Color */
}

/* Games Section */
.page-casino__game-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-casino__game-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-casino__game-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
  min-width: 200px; /* Minimum size */
  min-height: 200px; /* Minimum size */
}

.page-casino__game-card-title {
  font-size: 1.5em;
  color: #F2C14E; /* Main Color */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-casino__game-card-description {
  font-size: 0.95em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1; /* Allows description to take available space */
  padding: 0 15px;
}

/* Promo Section */
.page-casino__promo-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #FFF6D6; /* Text Main */
}

.page-casino__promo-card-title {
  font-size: 1.6em;
  color: #FFD36B; /* Auxiliary Color */
  margin-bottom: 15px;
}

.page-casino__promo-card-description {
  font-size: 1em;
  line-height: 1.7;
}

.page-casino__text-link {
    color: #F2C14E; /* Main Color */
    text-decoration: underline;
}

.page-casino__text-link:hover {
    color: #FFD36B; /* Auxiliary Color */
}

.page-casino__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Getting Started Section */
.page-casino__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino__step-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-casino__step-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #F2C14E; /* Main Color */
  color: #111111; /* Dark text for main color background */
  font-size: 2em;
  font-weight: 700;
  margin: 0 auto 20px auto;
}

.page-casino__step-title {
  font-size: 1.5em;
  color: #FFD36B; /* Auxiliary Color */
  margin-bottom: 10px;
}

.page-casino__step-description {
  font-size: 0.95em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Mobile Section */
.page-casino__grid--reverse-on-mobile {
  grid-template-columns: 1fr 1fr; /* Default desktop */
}

/* Responsible Gaming Section */
.page-casino__responsible-gaming-section {
  text-align: center;
  background-color: #0A0A0A; /* Background */
}

/* FAQ Section */
.page-casino__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-casino__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}