:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --card-bg-color: #111111;
  --bg-color: #0A0A0A;
  --text-main-color: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
}

/* Base styles for the casino page */
.page-casino {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Uses custom color #FFF6D6 */
  background-color: var(--bg-color); /* Uses custom color #0A0A0A */
}

/* Section padding for consistency */
.page-casino__section-padding {
  padding: 60px 0;
}

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

/* Text alignment utility */
.page-casino__text-center {
  text-align: center;
}

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

.page-casino__hero-content-wrapper {
  display: flex;
  flex-direction: column; /* Ensures image is above text */
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1200px; /* Constrain content width */
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 2; /* Ensure text is above any background effects */
}

.page-casino__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 30px; /* Space between image and text */
  border-radius: 10px;
  max-width: 100%; /* Ensure responsiveness */
}

.page-casino__hero-text-container {
  color: var(--text-main-color); /* #FFF6D6 */
}

.page-casino__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* H1 font size clamp for responsiveness */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main-color); /* #FFF6D6 */
}

.page-casino__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* For mobile responsiveness */
}

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