.page-casino {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-bottom: 60px; /* Ensure space above footer */
}

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

.page-casino__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Main Color */
  line-height: 1.2;
  letter-spacing: 0.05em;
}

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

.page-casino__btn-primary,
.page-casino__btn-secondary,
.page-casino__btn-tertiary,
.page-casino__btn-small {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-casino__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button Color */
  color: #000000; /* Dark text for contrast */
  border: none;
}

.page-casino__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.page-casino__btn-secondary:hover {
  background: #F2C14E;
  color: #000000;
}

.page-casino__btn-tertiary {
  background: #3A2A12; /* Border Color */
  color: #FFD36B; /* Glow Color */
  border: 2px solid #FFD36B; /* Glow Color */
}

.page-casino__btn-tertiary:hover {
  background: #FFD36B;
  color: #111111;
}

.page-casino__btn-small {
  padding: 8px 15px;
  font-size: 0.9em;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #000000;
  border: none;
}

.page-casino__btn-small:hover {
  opacity: 0.9;
}

.page-casino__cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-casino__cta-buttons--center {
  justify-content: center;
}

.page-casino__cta-buttons--left {
  justify-content: flex-start;
}

/* HERO Section */
.page-casino__hero-section {
  position: relative;
  width: 100%;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  overflow: hidden;
  background-color: #0A0A0A; /* Fallback background */
}

.page-casino__hero-content-wrapper {
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
  box-sizing: border-box;
}

.page-casino__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
  display: block;
  object-fit: cover;
}

.page-casino__hero-text-container {
  text-align: center;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-casino__hero-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: 900;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-casino__hero-description {
  font-size: 1.2em;
  color: #FFF6D6; /* Text Main */
  max-width: 900px;
  margin: 0 auto 30px auto;
  line-height: 1.5;
}

/* Why Choose Section */
.page-casino__why-choose-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-casino__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-casino__feature-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border Color */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px #FFD36B; /* Glow */
}

.page-casino__feature-title {
  font-size: 1.5em;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
}

.page-casino__feature-text {
  color: #FFF6D6; /* Text Main */
  font-size: 1em;
}

/* Game Showcase Section */
.page-casino__game-showcase-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-casino__game-categories-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.page-casino__game-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #FFF6D6;
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 15px 20px;
  min-width: 120px;
  transition: all 0.3s ease;
}

.page-casino__game-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px #FFD36B; /* Glow */
  color: #F2C14E;
}

.page-casino__game-category-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  display: block;
}

.page-casino__game-category-name {
  font-size: 1em;
  font-weight: bold;
}

.page-casino__game-examples-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 Color */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-casino__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px #FFD36B; /* Glow */
}

.page-casino__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-casino__game-card-title {
  font-size: 1.3em;
  color: #F2C14E; /* Main Color */
  margin: 15px 15px 5px 15px;
}

.page-casino__game-card-description {
  color: #FFF6D6; /* Text Main */
  font-size: 0.95em;
  padding: 0 15px 15px 15px;
  flex-grow: 1;
}

.page-casino__game-card .page-casino__btn-small {
  margin: 0 15px 15px 15px;
}

/* Promotions Section */
.page-casino__promotions-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-casino__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-casino__promo-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border Color */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-casino__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px #FFD36B; /* Glow */
}

.page-casino__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-casino__promo-card-title {
  font-size: 1.4em;
  color: #F2C14E; /* Main Color */
  margin: 15px 15px 5px 15px;
}

.page-casino__promo-card-text {
  color: #FFF6D6; /* Text Main */
  font-size: 0.95em;
  padding: 0 15px 15px 15px;
  flex-grow: 1;
}

.page-casino__promo-card .page-casino__btn-small {
  margin: 0 15px 15px 15px;
}

/* Mobile App Section */
.page-casino__mobile-app-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-casino__mobile-app-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-casino__mobile-app-text {
  flex: 1;
}

.page-casino__mobile-app-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-casino__mobile-app-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  display: block;
}

/* Security & Fairness Section */
.page-casino__security-fairness-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-casino__security-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-casino__security-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border Color */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-casino__security-title {
  font-size: 1.5em;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
}

.page-casino__security-text {
  color: #FFF6D6; /* Text Main */
  font-size: 1em;
}

/* FAQ Section */
.page-casino__faq-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-casino__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.page-casino__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #F2C14E; /* Main Color */
  font-weight: bold;
  background-color: #111111;
  transition: background-color 0.3s ease;
}

.page-casino__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-casino__faq-title {
  font-size: 1.2em;
  margin: 0;
  color: #F2C14E;
}

.page-casino__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-casino__faq-item.active .page-casino__faq-toggle {
  transform: rotate(45deg); /* Changes '+' to 'x' or '-' */
}