/* style/blog-123hero-casino-games-guide.css */

/* Body background color is handled by shared.css var(--background-color) which is #08160F (dark), so text should be light */
.page-blog-123hero-casino-games-guide {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-123hero-casino-games-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-123hero-casino-games-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-123hero-casino-games-guide__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-height: 200px; /* Ensure minimum size */
}

.page-blog-123hero-casino-games-guide__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  background-color: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  margin-top: -80px; /* Overlap slightly for visual effect, but not on image */
  z-index: 1;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-blog-123hero-casino-games-guide__main-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-123hero-casino-games-guide__lead-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-123hero-casino-games-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-123hero-casino-games-guide__btn-primary,
.page-blog-123hero-casino-games-guide__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  max-width: 300px; /* Limit button width */
}

.page-blog-123hero-casino-games-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-123hero-casino-games-guide__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-123hero-casino-games-guide__btn-secondary {
  background: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-blog-123hero-casino-games-guide__btn-secondary:hover {
  background: #2E7A4E; /* Border */
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-123hero-casino-games-guide__btn-block {
  display: block;
  width: 100%;
  max-width: 400px; /* Max width for block buttons */
  margin-left: auto;
  margin-right: auto;
}

.page-blog-123hero-casino-games-guide__btn-large {
  padding: 18px 35px;
  font-size: 1.2rem;
}

.page-blog-123hero-casino-games-guide__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-blog-123hero-casino-games-guide__dark-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border-radius: 10px;
  margin-bottom: 40px;
  padding: 60px 20px;
}

.page-blog-123hero-casino-games-guide__section-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-123hero-casino-games-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F, #13994A);
  border-radius: 2px;
}

.page-blog-123hero-casino-games-guide__sub-title {
  color: #F2FFF6; /* Text Main */
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-123hero-casino-games-guide__text-block p {
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-123hero-casino-games-guide__text-block strong {
  color: #F2FFF6; /* Text Main */
}

.page-blog-123hero-casino-games-guide__image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-123hero-casino-games-guide__image-grid--two-columns {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-blog-123hero-casino-games-guide__image-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
}

.page-blog-123hero-casino-games-guide__image-item .page-blog-123hero-casino-games-guide__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
  min-height: 200px; /* Ensure minimum size */
}

.page-blog-123hero-casino-games-guide__image-caption {
  color: #F2C14E; /* Gold */
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 15px 10px;
}

.page-blog-123hero-casino-games-guide__image-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
  padding: 0 15px;
}

.page-blog-123hero-casino-games-guide__full-width-image {
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-123hero-casino-games-guide__full-width-image .page-blog-123hero-casino-games-guide__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  min-height: 200px; /* Ensure minimum size */
}

.page-blog-123hero-casino-games-guide__faq-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-blog-123hero-casino-games-guide__faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.page-blog-123hero-casino-games-guide__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-123hero-casino-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-weight: 600;
  font-size: 1.1rem;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-123hero-casino-games-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-123hero-casino-games-guide__faq-question::marker {
  display: none;
}

.page-blog-123hero-casino-games-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-123hero-casino-games-guide__faq-item[open] .page-blog-123hero-casino-games-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-123hero-casino-games-guide__faq-answer {
  padding: 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  line-height: 1.5;
}

.page-blog-123hero-casino-games-guide__faq-answer p {
  margin-bottom: 0; /* Remove default paragraph margin */
}

.page-blog-123hero-casino-games-guide__call-to-action {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-blog-123hero-casino-games-guide__call-to-action .page-blog-123hero-casino-games-guide__section-title {
  margin-bottom: 30px;
}

.page-blog-123hero-casino-games-guide__call-to-action .page-blog-123hero-casino-games-guide__text-block p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-123hero-casino-games-guide__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

  .page-blog-123hero-casino-games-guide__section {
    padding: 40px 15px;
  }

  .page-blog-123hero-casino-games-guide__dark-section {
    padding: 40px 15px;
  }

  .page-blog-123hero-casino-games-guide__image-item .page-blog-123hero-casino-games-guide__image {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .page-blog-123hero-casino-games-guide__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-123hero-casino-games-guide__hero-content {
    margin-top: -40px;
    padding: 25px 10px;
  }

  .page-blog-123hero-casino-games-guide__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-123hero-casino-games-guide__lead-text {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }

  .page-blog-123hero-casino-games-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-123hero-casino-games-guide__btn-primary,
  .page-blog-123hero-casino-games-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-123hero-casino-games-guide__section,
  .page-blog-123hero-casino-games-guide__dark-section {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-123hero-casino-games-guide__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-blog-123hero-casino-games-guide__sub-title {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }

  .page-blog-123hero-casino-games-guide__image-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-123hero-casino-games-guide__image-grid--two-columns {
    grid-template-columns: 1fr;
  }

  .page-blog-123hero-casino-games-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-height: 200px !important; /* Ensure minimum size */
  }

  .page-blog-123hero-casino-games-guide__image-item .page-blog-123hero-casino-games-guide__image {
    height: auto !important; /* Allow height to adjust for mobile */
  }

  .page-blog-123hero-casino-games-guide__full-width-image {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }

  .page-blog-123hero-casino-games-guide__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-123hero-casino-games-guide__faq-answer {
    padding: 15px;
    font-size: 0.95rem;
  }

  .page-blog-123hero-casino-games-guide__call-to-action {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .page-blog-123hero-casino-games-guide__btn-block {
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Ensure all containers with images/buttons/videos are responsive */
  .page-blog-123hero-casino-games-guide__hero-image-wrapper,
  .page-blog-123hero-casino-games-guide__hero-content,
  .page-blog-123hero-casino-games-guide__cta-buttons,
  .page-blog-123hero-casino-games-guide__image-grid,
  .page-blog-123hero-casino-games-guide__image-item,
  .page-blog-123hero-casino-games-guide__faq-list,
  .page-blog-123hero-casino-games-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
  .page-blog-123hero-casino-games-guide__video-section {
    padding-top: 10px !important; /* body already handles --header-offset, this is for visual spacing */
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-blog-123hero-casino-games-guide__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-blog-123hero-casino-games-guide__hero-content {
    margin-top: -30px;
  }

  .page-blog-123hero-casino-games-guide__section-title {
    font-size: 1.5rem;
  }

  .page-blog-123hero-casino-games-guide__sub-title {
    font-size: 1.2rem;
  }

  .page-blog-123hero-casino-games-guide__btn-primary,
  .page-blog-123hero-casino-games-guide__btn-secondary {
    font-size: 1rem;
    padding: 12px 20px;
  }

  .page-blog-123hero-casino-games-guide__image-item .page-blog-123hero-casino-games-guide__image {
    height: 200px; /* Minimum height for smaller screens */
  }
}