/* style/casino.css */
.page-casino {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Default body background is white */
}

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

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

.page-casino__section-title {
  font-size: 36px;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-casino__section-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__section-text--white {
  color: #f0f0f0;
}

.page-casino__btn-primary,
.page-casino__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-casino__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-casino__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-casino__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-left: 20px;
}

.page-casino__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-casino__hero-section {
  position: relative;
  width: 100%;
  height: 700px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  box-sizing: border-box;
}

.page-casino__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-casino__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: -1;
}

.page-casino__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-casino__hero-title {
  font-size: 56px;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-casino__hero-description {
  font-size: 22px;
  margin-bottom: 40px;
  line-height: 1.5;
}

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

.page-casino__about-section {
  background-color: #ffffff;
  color: #333333;
}

.page-casino__games-section {
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-casino__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-casino__game-card:hover {
  transform: translateY(-10px);
}

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

.page-casino__game-card-title {
  font-size: 24px;
  margin: 20px 15px 10px;
  font-weight: bold;
}

.page-casino__game-card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-casino__game-card-title a:hover {
  text-decoration: underline;
}

.page-casino__game-card-description {
  font-size: 16px;
  color: #555555;
  padding: 0 20px 20px;
}

.page-casino__cta-buttons--center {
  text-align: center;
  margin-top: 40px;
}

.page-casino__promotions-section {
  background-color: #f8f8f8;
  color: #333333;
}

.page-casino__promotions-banner {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-casino__promotion-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 800px;
  font-size: 18px;
}

.page-casino__promotion-list li {
  background-color: #ffffff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.page-casino__promotion-list li::before {
  content: '✔️';
  margin-right: 15px;
  color: #26A9E0;
  font-size: 20px;
}

.page-casino__security-section {
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-casino__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
}

.page-casino__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.page-casino__feature-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-casino__feature-title--white {
  color: #ffffff;
}

.page-casino__feature-description {
  font-size: 16px;
  line-height: 1.5;
}

.page-casino__feature-description--white {
  color: #f0f0f0;
}

.page-casino__transactions-section {
  background-color: #ffffff;
  color: #333333;
}

.page-casino__payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
  text-align: center;
}

.page-casino__method-item {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-casino__method-icon {
  width: 120px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-casino__method-name {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
}

.page-casino__support-section {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-casino__support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
  text-align: center;
}

.page-casino__channel-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
}

.page-casino__channel-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.page-casino__channel-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-casino__channel-title--white {
  color: #ffffff;
}

.page-casino__channel-description {
  font-size: 16px;
  line-height: 1.5;
}

.page-casino__channel-description--white {
  color: #f0f0f0;
}

.page-casino__mobile-section {
  background-color: #f8f8f8;
  color: #333333;
}

.page-casino__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.page-casino__mobile-image {
  max-width: 450px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-casino__mobile-features {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.page-casino__mobile-subtitle {
  font-size: 28px;
  color: #26A9E0;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-casino__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-casino__feature-list li {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.page-casino__feature-list li::before {
  content: '📱';
  margin-right: 15px;
  color: #26A9E0;
  font-size: 20px;
}

.page-casino__faq-section {
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-casino__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-casino__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-casino__faq-heading {
  font-size: 20px;
  margin: 0;
  font-weight: bold;
}

.page-casino__faq-heading--white {
  color: #ffffff;
}

.page-casino__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.page-casino__faq-item.active .page-casino__faq-toggle {
  transform: rotate(45deg);
}

.page-casino__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-casino__faq-item.active .page-casino__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 20px 25px;
}

.page-casino__faq-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
}

.page-casino__faq-text--white {
  color: #f0f0f0;
}

.page-casino__cta-final-section {
  background-color: #ffffff;
  color: #333333;
  text-align: center;
}

.page-casino__cta-final-content {
  padding: 60px 20px;
  border: 2px dashed #26A9E0;
  border-radius: 15px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-casino__hero-title {
    font-size: 48px;
  }
  .page-casino__hero-description {
    font-size: 20px;
  }
  .page-casino__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-casino {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-casino__hero-section {
    height: 600px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-casino__hero-title {
    font-size: 38px;
  }
  .page-casino__hero-description {
    font-size: 18px;
  }
  .page-casino__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino__btn-secondary {
    margin-left: 0;
  }
  .page-casino__section-padding {
    padding: 60px 0;
  }
  .page-casino__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-casino__section-text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-casino__game-grid,
  .page-casino__security-features,
  .page-casino__payment-methods,
  .page-casino__support-channels {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-casino__mobile-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-casino__mobile-image {
    max-width: 100%;
  }
  .page-casino__mobile-features {
    min-width: unset;
    max-width: 100%;
  }
  .page-casino__mobile-subtitle {
    font-size: 24px;
  }
  .page-casino__faq-question {
    padding: 15px 20px;
  }
  .page-casino__faq-heading {
    font-size: 18px;
  }
  .page-casino__faq-answer {
    padding: 0 20px;
  }
  .page-casino__faq-item.active .page-casino__faq-answer {
    padding: 15px 20px;
  }
  /* Mobile image specific rules */
  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-casino__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  /* Mobile button specific rules */
  .page-casino__cta-button,
  .page-casino__btn-primary,
  .page-casino__btn-secondary,
  .page-casino a[class*="button"],
  .page-casino a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-casino__cta-buttons,
  .page-casino__button-group,
  .page-casino__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column !important;
  }
}