/* style/blog-k9cc-deep-dive-sports-casino-promotions.css */

/* Variables for colors */
:root {
  --k9cc-primary: #113B7A;
  --k9cc-secondary: #1D5FD1;
  --k9cc-button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  --k9cc-card-bg: #10233F;
  --k9cc-text-main: #F3F8FF;
  --k9cc-text-secondary: #AFC4E8;
  --k9cc-border: #244D84;
  --k9cc-glow: #4FA8FF;
  --k9cc-gold: #F2C14E;
  --k9cc-divider: #1B3357;
  --k9cc-deep-navy: #08162B; /* This is the body background from shared.css */
}

/* Base styles for the page content */
.page-blog-k9cc-deep-dive-sports-casino-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--k9cc-text-main); /* Default text color for dark background */
  background-color: var(--k9cc-deep-navy); /* Ensure consistency with body background */
}

/* Utility classes for background and text colors */
.page-blog-k9cc-deep-dive-sports-casino-promotions__dark-bg {
  background-color: var(--k9cc-deep-navy);
  color: var(--k9cc-text-main);
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__light-bg {
  background-color: #f8f9fa; /* A light background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-k9cc-deep-dive-sports-casino-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: var(--k9cc-deep-navy);
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px; /* Limit height for hero image */
  z-index: 1;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__hero-content {
  position: relative; /* Relative to hero section, not absolute over image */
  z-index: 2;
  max-width: 900px;
  margin-top: 40px; /* Space between image and content */
  padding: 0 20px;
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  color: var(--k9cc-gold); /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__subtitle {
  font-size: 1.25rem;
  color: var(--k9cc-text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Titles */
.page-blog-k9cc-deep-dive-sports-casino-promotions__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--k9cc-gold); /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__sub-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--k9cc-secondary);
  margin-top: 30px;
  margin-bottom: 20px;
}

/* Content Sections */
.page-blog-k9cc-deep-dive-sports-casino-promotions__intro-section,
.page-blog-k9cc-deep-dive-sports-casino-promotions__content-section,
.page-blog-k9cc-deep-dive-sports-casino-promotions__conclusion-section {
  padding: 60px 0;
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__text-block {
  margin-bottom: 30px;
}

.page-blog-k9cc-deep-dive-sports-casino-promotions p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: inherit; /* Inherit color from parent section */
}

.page-blog-k9cc-deep-dive-sports-casino-promotions strong {
  color: var(--k9cc-gold);
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: inherit;
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__list ol {
  list-style-type: decimal;
}

/* Buttons */
.page-blog-k9cc-deep-dive-sports-casino-promotions__btn-primary,
.page-blog-k9cc-deep-dive-sports-casino-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* Default for desktop */
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__btn-primary {
  background: var(--k9cc-button-gradient);
  color: var(--k9cc-text-main);
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__btn-secondary {
  background: none;
  color: var(--k9cc-gold);
  border: 2px solid var(--k9cc-gold);
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__btn-secondary:hover {
  background: var(--k9cc-gold);
  color: var(--k9cc-deep-navy);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__cta-wrapper {
  text-align: center;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* Grid for other games section */
.page-blog-k9cc-deep-dive-sports-casino-promotions__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__card {
  background-color: var(--k9cc-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  color: var(--k9cc-text-main);
  border: 1px solid var(--k9cc-border);
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__card-image {
  width: 100%;
  height: 250px; /* Fixed height for card images */
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--k9cc-gold);
  margin: 20px 15px 10px;
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__card p {
  font-size: 1rem;
  color: var(--k9cc-text-secondary);
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__card-link {
  display: block;
  background: var(--k9cc-button-gradient);
  color: var(--k9cc-text-main);
  padding: 12px 15px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  border-top: 1px solid var(--k9cc-border);
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__card-link:hover {
  opacity: 0.9;
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
}

/* FAQ Section */
.page-blog-k9cc-deep-dive-sports-casino-promotions__faq-section {
  padding: 60px 0;
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__faq-list {
  margin-top: 40px;
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--k9cc-border);
  background-color: var(--k9cc-card-bg);
  color: var(--k9cc-text-main);
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--k9cc-primary);
  color: var(--k9cc-text-main);
  border-bottom: 1px solid var(--k9cc-border);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__faq-question:hover {
  background-color: var(--k9cc-secondary);
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__faq-qtext {
  flex-grow: 1;
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 15px;
  color: var(--k9cc-gold);
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__faq-item[open] .page-blog-k9cc-deep-dive-sports-casino-promotions__faq-toggle {
  content: '−';
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__faq-answer {
  padding: 20px;
  font-size: 1.1rem;
  color: var(--k9cc-text-secondary);
  background-color: var(--k9cc-card-bg);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-blog-k9cc-deep-dive-sports-casino-promotions__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }
  .page-blog-k9cc-deep-dive-sports-casino-promotions__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-blog-k9cc-deep-dive-sports-casino-promotions__subtitle {
    font-size: 1.1rem;
  }
  .page-blog-k9cc-deep-dive-sports-casino-promotions__section-title {
    font-size: 1.8rem;
  }
  .page-blog-k9cc-deep-dive-sports-casino-promotions__sub-title {
    font-size: 1.4rem;
  }
  .page-blog-k9cc-deep-dive-sports-casino-promotions__content-image {
    margin: 20px auto;
  }
  .page-blog-k9cc-deep-dive-sports-casino-promotions__grid-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Mobile specific adjustments */
  .page-blog-k9cc-deep-dive-sports-casino-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-k9cc-deep-dive-sports-casino-promotions__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-k9cc-deep-dive-sports-casino-promotions__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-blog-k9cc-deep-dive-sports-casino-promotions__subtitle {
    font-size: 1rem;
  }
  .page-blog-k9cc-deep-dive-sports-casino-promotions__section-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    padding-top: 30px;
  }
  .page-blog-k9cc-deep-dive-sports-casino-promotions__sub-title {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .page-blog-k9cc-deep-dive-sports-casino-promotions__intro-section,
  .page-blog-k9cc-deep-dive-sports-casino-promotions__content-section,
  .page-blog-k9cc-deep-dive-sports-casino-promotions__conclusion-section,
  .page-blog-k9cc-deep-dive-sports-casino-promotions__faq-section {
    padding: 40px 0;
  }

  /* Image responsiveness */
  .page-blog-k9cc-deep-dive-sports-casino-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-k9cc-deep-dive-sports-casino-promotions__container,
  .page-blog-k9cc-deep-dive-sports-casino-promotions__card,
  .page-blog-k9cc-deep-dive-sports-casino-promotions__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Button responsiveness */
  .page-blog-k9cc-deep-dive-sports-casino-promotions__btn-primary,
  .page-blog-k9cc-deep-dive-sports-casino-promotions__btn-secondary,
  .page-blog-k9cc-deep-dive-sports-casino-promotions a[class*="button"],
  .page-blog-k9cc-deep-dive-sports-casino-promotions 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-blog-k9cc-deep-dive-sports-casino-promotions__cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-k9cc-deep-dive-sports-casino-promotions__faq-question {
    font-size: 1.1rem;
    padding: 15px;
  }
  .page-blog-k9cc-deep-dive-sports-casino-promotions__faq-answer {
    font-size: 1rem;
    padding: 15px;
  }
  .page-blog-k9cc-deep-dive-sports-casino-promotions__card-image {
    height: 200px; /* Adjust height for mobile cards */
  }
}

/* Contrast Fixes */
.page-blog-k9cc-deep-dive-sports-casino-promotions__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-k9cc-deep-dive-sports-casino-promotions__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}