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

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

.page-casino__section {
  padding: 60px 0;
  text-align: center;
}

.page-casino__section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-casino__subsection-title {
  font-size: clamp(22px, 3vw, 36px);
  color: #F2FFF6; /* Text Main */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-casino__text-block {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles padding-top, this is decorative */
  background-color: #0A4B2C; /* Deep Green */
}

.page-casino__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

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

.page-casino__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over image bottom */
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-casino__hero-description {
  font-size: 18px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

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

.page-casino__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

.page-casino__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* Brighter green */
  border: 2px solid #2AD16F;
}

.page-casino__btn-secondary:hover {
  background: #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
}

.page-casino__btn-tertiary {
  background: transparent;
  color: #F2C14E; /* Gold */
  border: 1px solid #F2C14E;
  padding: 10px 20px;
  font-size: 16px;
  margin-top: 15px;
}

.page-casino__btn-tertiary:hover {
  background: #F2C14E;
  color: #11271B; /* Card BG */
}

/* About Section */
.page-casino__about-section {
  background-color: #08160F; /* Background */
}

/* Games Section */
.page-casino__games-section {
  background-color: #0A4B2C; /* Deep Green */
  padding-bottom: 80px;
}

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

.page-casino__game-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}

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

.page-casino__card-title {
  font-size: 24px;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  padding: 0 20px;
  font-weight: bold;
}

.page-casino__card-description {
  font-size: 15px;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Promotions Section */
.page-casino__promotions-section {
  background-color: #08160F; /* Background */
}

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

.page-casino__promotion-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}

.page-casino__promotion-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

/* Registration Section */
.page-casino__registration-section {
  background-color: #0A4B2C; /* Deep Green */
}

.page-casino__steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-casino__step-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  max-width: 45%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-casino__step-title {
  font-size: 26px;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-casino__step-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Mobile App Section */
.page-casino__mobile-app-section {
  background-color: #08160F; /* Background */
}

.page-casino__app-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap-reverse; /* Image on right for desktop, on top for mobile */
}

.page-casino__app-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-casino__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-casino__mobile-app-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #2E7A4E; /* Border */
  display: block;
}

/* Support Section */
.page-casino__support-section {
  background-color: #0A4B2C; /* Deep Green */
}

.page-casino__support-content {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-casino__support-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  max-width: 45%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Conclusion Section */
.page-casino__conclusion-section {
  background-color: #08160F; /* Background */
  padding-bottom: 80px;
}

.page-casino__cta-final {
  margin-top: 40px;
}

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

@media (max-width: 768px) {
  .page-casino {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-casino__container {
    padding: 0 15px;
  }

  .page-casino__section {
    padding: 40px 0;
  }

  .page-casino__section-title {
    font-size: 24px;
  }

  .page-casino__subsection-title {
    font-size: 20px;
  }

  .page-casino__hero-section {
    padding-bottom: 40px;
  }

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

  .page-casino__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }

  .page-casino__main-title {
    font-size: 28px;
  }

  .page-casino__hero-description {
    font-size: 16px;
  }

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

  .page-casino__btn-primary,
  .page-casino__btn-secondary,
  .page-casino__btn-tertiary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-casino__game-categories,
  .page-casino__promotions-grid,
  .page-casino__steps,
  .page-casino__support-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-casino__game-card,
  .page-casino__promotion-card,
  .page-casino__step-item,
  .page-casino__support-item {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }

  .page-casino__game-image,
  .page-casino__promotion-image,
  .page-casino__mobile-app-image,
  .page-casino img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-casino__app-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-casino__app-text {
    text-align: center;
  }

  .page-casino__mobile-app-image {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-casino__main-title {
    font-size: 24px;
  }

  .page-casino__hero-description {
    font-size: 15px;
  }

  .page-casino__section-title {
    font-size: 22px;
  }

  .page-casino__subsection-title {
    font-size: 18px;
  }

  .page-casino__hero-content {
    margin-top: -60px;
  }
}