.page-casino {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-casino__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles top padding, this is just extra spacing */
  overflow: hidden;
  color: #F2FFF6;
}

.page-casino__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  position: relative;
}

.page-casino__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text readability */
}

.page-casino__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Pull content up over the image a bit */
  background: rgba(8, 22, 15, 0.8); /* Semi-transparent background for text */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-casino__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-casino__description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-casino__btn-primary,
.page-casino__btn-secondary,
.page-casino__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.page-casino__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-casino__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-casino__btn-secondary:hover {
  background-color: #F2C14E;
  color: #08160F; /* Background */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-casino__btn-tertiary {
  background-color: #11A84E; /* Main color */
  color: #F2FFF6; /* Text Main */
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
}

.page-casino__btn-tertiary:hover {
  background-color: #22C768; /* Accent color */
  transform: translateY(-1px);
}

.page-casino__btn-link {
  color: #F2C14E; /* Gold */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.page-casino__btn-link:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-casino__btn-primary--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

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

.page-casino__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-casino__text-block {
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

.page-casino__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 0;
}

.page-casino__games-section,
.page-casino__advantages-section,
.page-casino__guide-section,
.page-casino__faq-section,
.page-casino__cta-bottom {
  padding: 60px 0;
}

.page-casino__game-category {
  margin-bottom: 60px;
}

.page-casino__game-subtitle {
  font-size: clamp(1.5em, 2.5vw, 2.2em);
  color: #22C768; /* Accent color */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-casino__game-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.page-casino__game-card--reverse {
  flex-direction: row-reverse;
}

.page-casino__game-image {
  flex: 1 1 40%;
  max-width: 40%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Minimum image size */
}

.page-casino__game-content {
  flex: 1 1 60%;
  padding: 30px;
  box-sizing: border-box;
}

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

.page-casino__game-list li {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-casino__game-list li::before {
  content: '✔';
  color: #22C768; /* Accent color */
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-casino__advantage-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 350px; /* Ensure cards have similar height */
}

.page-casino__advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-casino__advantage-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.page-casino__advantage-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-casino__advantage-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
}

.page-casino__guide-step {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-casino__guide-subtitle {
  font-size: 1.6em;
  color: #22C768; /* Accent color */
  margin-bottom: 20px;
}

.page-casino__faq-list {
  margin-top: 40px;
}

.page-casino__faq-item {
  background-color: #11271B; /* Card BG */
  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;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid #1E3A2A; /* Divider */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-casino__faq-question::-webkit-details-marker {
  display: none;
}

.page-casino__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-casino__faq-qtext {
  flex-grow: 1;
}

.page-casino__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #22C768; /* Accent color */
}

.page-casino__faq-item[open] .page-casino__faq-toggle {
  content: '−';
}

.page-casino__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  background-color: #0A4B2C; /* Deep Green */
}

.page-casino__cta-bottom {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #0A4B2C 0%, #08160F 100%);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-casino__hero-content {
    margin-top: -100px;
    padding: 15px;
  }

  .page-casino__game-image {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .page-casino__game-card--reverse {
    flex-direction: column;
  }

  .page-casino__game-card {
    flex-direction: column;
  }

  .page-casino__game-content {
    flex: 1 1 100%;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .page-casino__hero-content {
    margin-top: -50px;
    padding: 10px;
  }

  .page-casino__main-title {
    font-size: 2em;
  }

  .page-casino__description {
    font-size: 1em;
  }

  .page-casino__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-casino__btn-primary,
  .page-casino__btn-secondary,
  .page-casino__btn-tertiary {
    padding: 12px 25px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-casino__btn-primary--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-casino__section-title {
    font-size: 2em;
  }

  .page-casino__text-block {
    font-size: 0.95em;
  }

  .page-casino__game-subtitle {
    font-size: 1.8em;
  }

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

  .page-casino__advantage-card {
    min-height: auto;
  }

  .page-casino__guide-subtitle {
    font-size: 1.4em;
  }

  .page-casino__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-casino__faq-answer {
    font-size: 1em;
    padding: 10px 20px 15px;
  }

  /* Mobile image responsiveness */
  .page-casino img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-casino__section,
  .page-casino__card,
  .page-casino__container,
  .page-casino__game-card,
  .page-casino__advantage-card,
  .page-casino__guide-step,
  .page-casino__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-casino__hero-section {
    padding: 10px 0 30px 0;
  }

  .page-casino__hero-image-wrapper {
    max-height: 400px;
  }

  .page-casino__hero-content {
    padding: 15px;
  }

  .page-casino__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-casino__cta-buttons > * {
    width: 100%;
  }
}