/* style/casino.css */

/* Base styles for the page-casino scope */
.page-casino {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-casino__section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.page-casino__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff; /* Light text for titles */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-casino__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0; /* Slightly lighter white for description */
}

/* Specific background colors for sections */
.page-casino__dark-section {
  background-color: rgba(0, 123, 255, 0.15); /* Semi-transparent primary color */
  color: #ffffff;
}

.page-casino__dark-section .page-casino__section-title {
  color: #ffffff;
}

.page-casino__dark-section .page-casino__section-description {
  color: #f0f0f0;
}

.page-casino__dark-bg {
  background-color: #007bff; /* Primary brand color as background */
  color: #ffffff;
}

.page-casino__dark-bg .page-casino__section-title {
  color: #ffffff;
}

.page-casino__dark-bg .page-casino__section-description {
  color: #f0f0f0;
}

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

.page-casino__btn-primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #0d1117; /* Dark text for light background */
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-casino__btn-primary:hover {
  background-color: #e0a800;
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.6);
  transform: translateY(-2px);
}

.page-casino__btn-secondary {
  background-color: transparent;
  color: #ffc107; /* Auxiliary color text */
  border: 2px solid #ffc107;
  margin-left: 20px;
}

.page-casino__btn-secondary:hover {
  background-color: #ffc107;
  color: #0d1117;
  transform: translateY(-2px);
}

.page-casino__btn-tertiary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffc107;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-casino__btn-tertiary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.page-casino__btn-quaternary {
  background-color: #007bff;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-casino__btn-quaternary:hover {
  background-color: #0056b3;
}