/* style/blog-how-to-identify-top-reputable-casino-platforms.css */

:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --card-bg: #111111;
  --background-main: #0A0A0A;
  --text-main: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-blog-how-to-identify-top-reputable-casino-platforms {
  font-family: Arial, sans-serif;
  color: var(--text-main); /* Light text for dark background */
  background-color: var(--background-main); /* Dark body background */
  line-height: 1.6;
}

.page-blog-how-to-identify-top-reputable-casino-platforms__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO Section */
.page-blog-how-to-identify-top-reputable-casino-platforms__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-blog-how-to-identify-top-reputable-casino-platforms__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.page-blog-how-to-identify-top-reputable-casino-platforms__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability, not changing color */
}

.page-blog-how-to-identify-top-reputable-casino-platforms__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-top: -150px; /* Pull content up over the image for visual hierarchy */
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for text */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-identify-top-reputable-casino-platforms__main-title {
  color: var(--secondary-color);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(2em, 4vw, 3em); /* Responsive font size for H1 */
}

.page-blog-how-to-identify-top-reputable-casino-platforms__description {
  font-size: 1.1em;
  color: var(--text-main);
  margin-bottom: 30px;
}

.page-blog-how-to-identify-top-reputable-casino-platforms__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-how-to-identify-top-reputable-casino-platforms__btn-primary,
.page-blog-how-to-identify-top-reputable-casino-platforms__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-identify-top-reputable-casino-platforms__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(255, 211, 107, 0.4);
}

.page-blog-how-to-identify-top-reputable-casino-platforms__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-blog-how-to-identify-top-reputable-casino-platforms__btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-blog-how-to-identify-top-reputable-casino-platforms__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--background-main);
  transform: translateY(-2px);
}

.page-blog-how-to-identify-top-reputable-casino-platforms__cta-buttons--bottom {
  margin-top: 40px;
}

/* Content Area */
.page-blog-how-to-identify-top-reputable-casino-platforms__content-area {
  padding: 60px 0;
  background-color: var(--background-main);
}

.page-blog-how-to-identify-top-reputable-casino-platforms__section-title {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2em;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-identify-top-reputable-casino-platforms__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-blog-how-to-identify-top-reputable-casino-platforms__paragraph a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-blog-how-to-identify-top-reputable-casino-platforms__paragraph a:hover {
  color: var(--primary-color);
}

.page-blog-how-to-identify-top-reputable-casino-platforms__feature-block {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-blog-how-to-identify-top-reputable-casino-platforms__feature-block img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-identify-top-reputable-casino-platforms__feature-title {
  color: var(--secondary-color);
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: bold;
}

/* FAQ Section */
.page-blog-how-to-identify-top-reputable-casino-platforms__faq-section {
  padding: 60px 0;
  background-color: var(--background-main);
}

.page-blog-how-to-identify-top-reputable-casino-platforms__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-identify-top-reputable-casino-platforms__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-identify-top-reputable-casino-platforms__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  background-color: #1a1a1a;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-identify-top-reputable-casino-platforms__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

.page-blog-how-to-identify-top-reputable-casino-platforms__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-blog-how-to-identify-top-reputable-casino-platforms__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--secondary-color);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-how-to-identify-top-reputable-casino-platforms__faq-item[open] .page-blog-how-to-identify-top-reputable-casino-platforms__faq-toggle {
  transform: rotate(45deg); /* Rotate + to become X */
}

.page-blog-how-to-identify-top-reputable-casino-platforms__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: var(--text-main);
  background-color: var(--card-bg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-identify-top-reputable-casino-platforms__hero-content {
    margin-top: -100px;
  }
  .page-blog-how-to-identify-top-reputable-casino-platforms__main-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
  }
  .page-blog-how-to-identify-top-reputable-casino-platforms__section-title {
    font-size: 2em;
  }
  .page-blog-how-to-identify-top-reputable-casino-platforms__feature-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-blog-how-to-identify-top-reputable-casino-platforms__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 40px;
  }

  .page-blog-how-to-identify-top-reputable-casino-platforms__hero-image-wrapper {
    max-height: 400px;
  }

  .page-blog-how-to-identify-top-reputable-casino-platforms__hero-content {
    margin-top: -80px;
    padding: 15px;
  }

  .page-blog-how-to-identify-top-reputable-casino-platforms__main-title {
    font-size: clamp(1.5em, 6vw, 2em) !important;
    margin-bottom: 15px;
  }

  .page-blog-how-to-identify-top-reputable-casino-platforms__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-how-to-identify-top-reputable-casino-platforms__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-identify-top-reputable-casino-platforms__btn-primary,
  .page-blog-how-to-identify-top-reputable-casino-platforms__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  /* Content Area */
  .page-blog-how-to-identify-top-reputable-casino-platforms__content-area {
    padding: 40px 0;
  }

  .page-blog-how-to-identify-top-reputable-casino-platforms__container {
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-identify-top-reputable-casino-platforms__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-how-to-identify-top-reputable-casino-platforms__paragraph {
    font-size: 1em;
  }

  .page-blog-how-to-identify-top-reputable-casino-platforms__feature-block {
    padding: 20px;
    margin-bottom: 20px;
  }

  .page-blog-how-to-identify-top-reputable-casino-platforms__feature-block img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-how-to-identify-top-reputable-casino-platforms__feature-title {
    font-size: 1.5em;
  }

  /* FAQ Section */
  .page-blog-how-to-identify-top-reputable-casino-platforms__faq-section {
    padding: 40px 0;
  }

  .page-blog-how-to-identify-top-reputable-casino-platforms__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-blog-how-to-identify-top-reputable-casino-platforms__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }

  /* General image and container rules for mobile */
  .page-blog-how-to-identify-top-reputable-casino-platforms img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-how-to-identify-top-reputable-casino-platforms__section,
  .page-blog-how-to-identify-top-reputable-casino-platforms__card,
  .page-blog-how-to-identify-top-reputable-casino-platforms__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}