/* style/casino.css */
.page-casino {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  overflow-x: hidden;
}

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

.page-casino__dark-section {
  background-color: #0A0A0A; /* Ensures consistent dark background */
  padding: 60px 0;
}

.page-casino__hero-section {
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
}

.page-casino__hero-section .page-casino__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-casino__hero-content {
  max-width: 800px;
  margin-bottom: 20px;
}

.page-casino__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  color: #FFF6D6;
  margin-bottom: 15px;
  line-height: 1.2;
}

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

.page-casino__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
}

.page-casino__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-casino__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-casino__about-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.page-casino__about-text {
  flex: 1;
}

.page-casino__about-text p {
  margin-bottom: 15px;
  color: #FFF6D6;
}

.page-casino__about-image-wrapper {
  flex: 0 0 600px;
  max-width: 50%;
  border-radius: 10px;
  overflow: hidden;
}

.page-casino__about-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-casino__game-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.page-casino__category-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #FFF6D6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(242, 193, 78, 0.2);
}

.page-casino__category-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 5px #F2C14E);
}

.page-casino__category-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD36B;
}

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

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

.page-casino__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(242, 193, 78, 0.3);
}

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

.page-casino__promo-card h3 {
  font-size: 1.4em;
  color: #F2C14E;
  margin: 20px 20px 10px 20px;
}

.page-casino__promo-text {
  font-size: 0.95em;
  margin: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-casino__promo-card .page-casino__btn-secondary {
  margin: 0 20px 20px 20px;
  align-self: flex-start;
}

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

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

.page-casino__feature-item h3 {
  font-size: 1.3em;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-casino__feature-item p {
  font-size: 0.95em;
}

.page-casino__features-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

.page-casino__mobile-app-image-wrapper {
  flex: 0 0 450px;
  max-width: 40%;
  border-radius: 10px;
  overflow: hidden;
}

.page-casino__mobile-app-image {
  width: 100%;
  height: auto;
  display: block;
}

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

.page-casino__mobile-app-text p {
  margin-bottom: 15px;
  color: #FFF6D6;
}

.page-casino__partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.page-casino__partner-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 127px; /* Fixed height for game images */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-casino__partner-logo {
  width: 100%;
  max-width: 167px; /* Max width for game images */
  height: 100%;
  max-height: 127px; /* Max height for game images */
  object-fit: contain;
}

.page-casino__expandable-content {
  max-height: 100%; /* Initially fully visible */
  overflow: hidden;
  transition: max-height 0.7s ease-out;
}