/* style/blog-hitha88-sports-casino-deep-dive.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-color: #EA7C07;
  --background-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
}

.page-blog-hitha88-sports-casino-deep-dive {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Body background is light, so use dark text */
  background-color: var(--background-color);
}

.page-blog-hitha88-sports-casino-deep-dive__section-padding {
  padding: 60px 0;
}

.page-blog-hitha88-sports-casino-deep-dive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-hitha88-sports-casino-deep-dive__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles --header-offset, so small top padding */
  overflow: hidden;
}

.page-blog-hitha88-sports-casino-deep-dive__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px; /* Limit height for hero image */
  filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-blog-hitha88-sports-casino-deep-dive__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  width: 90%;
  color: var(--text-light);
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
}

.page-blog-hitha88-sports-casino-deep-dive__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-hitha88-sports-casino-deep-dive__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-blog-hitha88-sports-casino-deep-dive__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* General Text Styles */
.page-blog-hitha88-sports-casino-deep-dive__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-hitha88-sports-casino-deep-dive__section-title--light {
  color: var(--text-light);
}

.page-blog-hitha88-sports-casino-deep-dive__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-hitha88-sports-casino-deep-dive__paragraph--light {
  color: var(--text-light);
}

.page-blog-hitha88-sports-casino-deep-dive__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-blog-hitha88-sports-casino-deep-dive__list--light {
  color: var(--text-light);
}

.page-blog-hitha88-sports-casino-deep-dive__list-item {
  margin-bottom: 10px;
}

.page-blog-hitha88-sports-casino-deep-dive__image--center {
  display: block;
  margin: 0 auto 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Product Categories */
.page-blog-hitha88-sports-casino-deep-dive__product-category {
  margin-bottom: 60px;
  text-align: center;
}

.page-blog-hitha88-sports-casino-deep-dive__product-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-blog-hitha88-sports-casino-deep-dive__product-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Card Grid */
.page-blog-hitha88-sports-casino-deep-dive__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hitha88-sports-casino-deep-dive__card {
  background: var(--secondary-color);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: left;
}

.page-blog-hitha88-sports-casino-deep-dive__card-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-blog-hitha88-sports-casino-deep-dive__ordered-list {
  list-style: decimal inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

/* Buttons */
.page-blog-hitha88-sports-casino-deep-dive__btn-primary,
.page-blog-hitha88-sports-casino-deep-dive__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-hitha88-sports-casino-deep-dive__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-blog-hitha88-sports-casino-deep-dive__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-blog-hitha88-sports-casino-deep-dive__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-hitha88-sports-casino-deep-dive__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Dark Section */
.page-blog-hitha88-sports-casino-deep-dive__dark-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* FAQ Section */
.page-blog-hitha88-sports-casino-deep-dive__faq-item {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}

.page-blog-hitha88-sports-casino-deep-dive__faq-item[open] {
  background-color: #f9f9f9;
}

.page-blog-hitha88-sports-casino-deep-dive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--primary-color);
  list-style: none; /* For details/summary */
}

.page-blog-hitha88-sports-casino-deep-dive__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hitha88-sports-casino-deep-dive__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-hitha88-sports-casino-deep-dive__faq-answer {
  padding: 0 20px 20px 20px;
  color: var(--text-dark);
}

.page-blog-hitha88-sports-casino-deep-dive__faq-item[open] .page-blog-hitha88-sports-casino-deep-dive__faq-answer {
  animation: fadein 0.3s ease-in-out;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-hitha88-sports-casino-deep-dive__hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-blog-hitha88-sports-casino-deep-dive__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-hitha88-sports-casino-deep-dive {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-hitha88-sports-casino-deep-dive__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-blog-hitha88-sports-casino-deep-dive__hero-image {
    max-height: 350px;
  }
  .page-blog-hitha88-sports-casino-deep-dive__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-blog-hitha88-sports-casino-deep-dive__hero-description {
    font-size: 1rem;
  }
  .page-blog-hitha88-sports-casino-deep-dive__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-hitha88-sports-casino-deep-dive__btn-primary,
  .page-blog-hitha88-sports-casino-deep-dive__btn-secondary {
    width: 100% !important; /* Ensure buttons take full width */
    padding: 12px 20px;
  }
  .page-blog-hitha88-sports-casino-deep-dive__section-padding {
    padding: 40px 0;
  }
  .page-blog-hitha88-sports-casino-deep-dive__container,
  .page-blog-hitha88-sports-casino-deep-dive__card-grid,
  .page-blog-hitha88-sports-casino-deep-dive__product-category {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-hitha88-sports-casino-deep-dive img,
  .page-blog-hitha88-sports-casino-deep-dive__product-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-hitha88-sports-casino-deep-dive__card {
    padding: 20px;
  }
  .page-blog-hitha88-sports-casino-deep-dive__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-blog-hitha88-sports-casino-deep-dive__faq-answer {
    padding: 0 15px 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-hitha88-sports-casino-deep-dive__hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .page-blog-hitha88-sports-casino-deep-dive__section-title {
    font-size: 1.8rem;
  }
  .page-blog-hitha88-sports-casino-deep-dive__product-title {
    font-size: 1.5rem;
  }
}