/* style/resources-how-to-choose-casino.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-color-dark-bg: #FFFFFF;
  --text-color-light-bg: #333333;
  --register-button-bg: #C30808;
  --login-button-bg: #C30808;
  --button-font-color: #FFFF00;
  --body-bg: #0a0a0a; /* Defined in shared.css, referencing for text color decision */
}

.page-resources-how-to-choose-casino {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark-bg); /* Body background is dark, so text should be light */
  background-color: var(--body-bg);
}

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

/* Hero Section */
.page-resources-how-to-choose-casino__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-color-dark-bg);
  min-height: 500px;
  overflow: hidden;
}

.page-resources-how-to-choose-casino__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-resources-how-to-choose-casino__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-color-dark-bg);
}

.page-resources-how-to-choose-casino__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-color-dark-bg);
}

.page-resources-how-to-choose-casino__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.page-resources-how-to-choose-casino__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* General Section Styles */
.page-resources-how-to-choose-casino__intro-section,
.page-resources-how-to-choose-casino__vn68-advantage-section,
.page-resources-how-to-choose-casino__tips-section,
.page-resources-how-to-choose-casino__conclusion-section {
  padding: 60px 0;
  background-color: var(--body-bg);
  color: var(--text-color-dark-bg);
}

.page-resources-how-to-choose-casino__criteria-section,
.page-resources-how-to-choose-casino__faq-section {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--text-color-dark-bg);
}

.page-resources-how-to-choose-casino__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: inherit;
}

.page-resources-how-to-choose-casino__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: inherit;
}

/* Buttons */
.page-resources-how-to-choose-casino__btn-primary {
  display: inline-block;
  background-color: var(--register-button-bg); /* Custom color for register/login */
  color: var(--button-font-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  box-sizing: border-box;
}

.page-resources-how-to-choose-casino__btn-primary:hover {
  background-color: #a00606;
}

.page-resources-how-to-choose-casino__cta-button {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Criteria Grid */
.page-resources-how-to-choose-casino__criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-choose-casino__card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-color-dark-bg);
  height: 100%;
  box-sizing: border-box;
}

.page-resources-how-to-choose-casino__card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: var(--text-color-dark-bg);
}

.page-resources-how-to-choose-casino__card-text {
  font-size: 1em;
  color: var(--text-color-dark-bg);
}

/* Lists */
.page-resources-how-to-choose-casino__advantage-list,
.page-resources-how-to-choose-casino__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-how-to-choose-casino__list-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: inherit;
}

.page-resources-how-to-choose-casino__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--button-font-color); /* Highlight checkmark */
  font-weight: bold;
}

/* Content Images */
.page-resources-how-to-choose-casino__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

/* Video Section */
.page-resources-how-to-choose-casino__video-section {
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-color-dark-bg);
}

.page-resources-how-to-choose-casino__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.page-resources-how-to-choose-casino__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.page-resources-how-to-choose-casino__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Dark overlay to indicate clickable */
  z-index: 10;
  transition: background 0.3s ease;
}

.page-resources-how-to-choose-casino__video-overlay:hover {
  background: rgba(0, 0, 0, 0.1); 
}

.page-resources-how-to-choose-casino__video-cta {
  font-style: italic;
  margin-top: 20px;
  color: var(--text-color-dark-bg);
}

/* FAQ Section */
.page-resources-how-to-choose-casino__faq-list {
  margin-top: 40px;
}

.page-resources-how-to-choose-casino__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-color-dark-bg);
}

.page-resources-how-to-choose-casino__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
  color: var(--text-color-dark-bg);
}

.page-resources-how-to-choose-casino__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-how-to-choose-casino__faq-title {
  margin: 0;
  color: var(--text-color-dark-bg);
}

.page-resources-how-to-choose-casino__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--button-font-color);
}

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

.page-resources-how-to-choose-casino__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-color-dark-bg);
}

.page-resources-how-to-choose-casino__faq-item.active .page-resources-how-to-choose-casino__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px;
}

.page-resources-how-to-choose-casino__faq-answer p {
  margin: 0;
  color: var(--text-color-dark-bg);
}

/* Dark background elements */
.page-resources-how-to-choose-casino__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-color-dark-bg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-how-to-choose-casino__hero-title {
    font-size: 2.8em;
  }
  .page-resources-how-to-choose-casino__section-title {
    font-size: 2em;
  }
}

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

  .page-resources-how-to-choose-casino__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-how-to-choose-casino__hero-title {
    font-size: 2.2em;
  }

  .page-resources-how-to-choose-casino__hero-description {
    font-size: 1em;
  }

  .page-resources-how-to-choose-casino__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-how-to-choose-casino__intro-section,
  .page-resources-how-to-choose-casino__criteria-section,
  .page-resources-how-to-choose-casino__vn68-advantage-section,
  .page-resources-how-to-choose-casino__video-section,
  .page-resources-how-to-choose-casino__tips-section,
  .page-resources-how-to-choose-casino__faq-section,
  .page-resources-how-to-choose-casino__conclusion-section {
    padding: 40px 0;
  }

  .page-resources-how-to-choose-casino__container {
    padding: 0 15px;
  }

  .page-resources-how-to-choose-casino__criteria-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-how-to-choose-casino__card {
    padding: 20px;
  }

  /* Mobile image responsiveness */
  .page-resources-how-to-choose-casino img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile video responsiveness */
  .page-resources-how-to-choose-casino video,
  .page-resources-how-to-choose-casino__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-how-to-choose-casino__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }

  /* Mobile button responsiveness */
  .page-resources-how-to-choose-casino__btn-primary,
  .page-resources-how-to-choose-casino__cta-button,
  .page-resources-how-to-choose-casino a[class*="button"],
  .page-resources-how-to-choose-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-resources-how-to-choose-casino__cta-button {
    margin-left: 0;
    margin-right: 0;
  }

  .page-resources-how-to-choose-casino__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-resources-how-to-choose-casino__faq-answer {
    padding: 0 15px;
  }

  .page-resources-how-to-choose-casino__faq-item.active .page-resources-how-to-choose-casino__faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-choose-casino__hero-title {
    font-size: 1.8em;
  }
  .page-resources-how-to-choose-casino__section-title {
    font-size: 1.5em;
  }
  .page-resources-how-to-choose-casino__btn-primary {
    padding: 12px 20px;
    font-size: 1em;
  }
}