/* style/blog-phfun-sports-betting-tips.css */

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

.page-blog-phfun-sports-betting-tips {
  font-family: Arial, sans-serif;
  color: var(--phfun-text-main); /* Default text color for the page */
  background-color: var(--phfun-background);
  line-height: 1.6;
  padding-top: 0; /* body handles padding-top from header-offset */
}

.page-blog-phfun-sports-betting-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-blog-phfun-sports-betting-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px; /* Adjust as needed */
  filter: brightness(0.6); /* Slightly dim the image for text readability */
}

.page-blog-phfun-sports-betting-tips__hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px;
  background: linear-gradient(0deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0) 100%);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-phfun-sports-betting-tips__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: var(--phfun-primary);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-phfun-sports-betting-tips__description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: var(--phfun-text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-phfun-sports-betting-tips__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-phfun-sports-betting-tips__cta-button--primary {
  background: var(--phfun-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

.page-blog-phfun-sports-betting-tips__cta-button--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(242, 193, 78, 0.6);
}

.page-blog-phfun-sports-betting-tips__cta-button--secondary {
  background: transparent;
  color: var(--phfun-primary);
  border: 2px solid var(--phfun-primary);
  margin-left: 20px;
}

.page-blog-phfun-sports-betting-tips__cta-button--secondary:hover {
  background: var(--phfun-primary);
  color: var(--phfun-background);
  transform: translateY(-2px);
}

.page-blog-phfun-sports-betting-tips__content-section {
  padding: 60px 0;
  background-color: var(--phfun-background);
}

.page-blog-phfun-sports-betting-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-phfun-sports-betting-tips__section-title {
  font-size: 2.5em;
  color: var(--phfun-primary);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-phfun-sports-betting-tips__sub-title {
  font-size: 1.8em;
  color: var(--phfun-secondary);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-phfun-sports-betting-tips__paragraph {
  font-size: 1.1em;
  color: var(--phfun-text-main);
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-blog-phfun-sports-betting-tips__image-inline {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 30px 0;
  object-fit: cover;
  min-height: 200px;
}

.page-blog-phfun-sports-betting-tips__faq-section {
  padding: 60px 0;
  background-color: var(--phfun-card-bg);
}

.page-blog-phfun-sports-betting-tips__faq-item {
  background-color: var(--phfun-background);
  border: 1px solid var(--phfun-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.page-blog-phfun-sports-betting-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--phfun-primary);
  transition: background-color 0.3s ease;
}

.page-blog-phfun-sports-betting-tips__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-phfun-sports-betting-tips__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: 1em;
}

.page-blog-phfun-sports-betting-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--phfun-secondary);
}

.page-blog-phfun-sports-betting-tips__faq-item.active .page-blog-phfun-sports-betting-tips__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

.page-blog-phfun-sports-betting-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--phfun-text-main);
  font-size: 1.05em;
  line-height: 1.7;
}

.page-blog-phfun-sports-betting-tips__faq-item.active .page-blog-phfun-sports-betting-tips__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px 25px;
}

.page-blog-phfun-sports-betting-tips__faq-answer p {
  margin-bottom: 0;
  color: inherit;
}

.page-blog-phfun-sports-betting-tips__cta-banner {
  background: var(--phfun-button-gradient);
  padding: 80px 20px;
  text-align: center;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.page-blog-phfun-sports-betting-tips__banner-title {
  font-size: 2.8em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-phfun-sports-betting-tips__banner-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-phfun-sports-betting-tips__cta-banner .page-blog-phfun-sports-betting-tips__cta-button--primary {
  background: #ffffff;
  color: #DDA11D;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-blog-phfun-sports-betting-tips__cta-banner .page-blog-phfun-sports-betting-tips__cta-button--primary:hover {
  background: #f0f0f0;
  color: #B08218;
}

.page-blog-phfun-sports-betting-tips__cta-banner .page-blog-phfun-sports-betting-tips__cta-button--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-blog-phfun-sports-betting-tips__cta-banner .page-blog-phfun-sports-betting-tips__cta-button--secondary:hover {
  background: #ffffff;
  color: #DDA11D;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-phfun-sports-betting-tips__hero-content {
    padding: 30px 15px;
  }
  .page-blog-phfun-sports-betting-tips__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-blog-phfun-sports-betting-tips__description {
    font-size: clamp(0.9em, 1.8vw, 1.1em);
  }
  .page-blog-phfun-sports-betting-tips__section-title {
    font-size: 2em;
  }
  .page-blog-phfun-sports-betting-tips__sub-title {
    font-size: 1.5em;
  }
  .page-blog-phfun-sports-betting-tips__banner-title {
    font-size: 2.2em;
  }
  .page-blog-phfun-sports-betting-tips__banner-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-blog-phfun-sports-betting-tips__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-phfun-sports-betting-tips__hero-content {
    padding: 20px 15px;
  }
  .page-blog-phfun-sports-betting-tips__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }
  .page-blog-phfun-sports-betting-tips__description {
    font-size: clamp(0.85em, 2.5vw, 1em);
  }
  .page-blog-phfun-sports-betting-tips__cta-button {
    display: block;
    margin: 10px auto !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-phfun-sports-betting-tips__cta-button--secondary {
    margin-left: auto !important;
  }
  .page-blog-phfun-sports-betting-tips__content-section,
  .page-blog-phfun-sports-betting-tips__faq-section,
  .page-blog-phfun-sports-betting-tips__cta-banner {
    padding: 40px 0;
  }
  .page-blog-phfun-sports-betting-tips__container {
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-phfun-sports-betting-tips__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-phfun-sports-betting-tips__sub-title {
    font-size: 1.3em;
  }
  .page-blog-phfun-sports-betting-tips__paragraph {
    font-size: 1em;
  }
  .page-blog-phfun-sports-betting-tips img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    min-height: 200px;
  }
  .page-blog-phfun-sports-betting-tips__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-blog-phfun-sports-betting-tips__faq-answer {
    padding: 0 20px;
  }
  .page-blog-phfun-sports-betting-tips__faq-item.active .page-blog-phfun-sports-betting-tips__faq-answer {
    padding: 10px 20px 20px 20px;
  }
  .page-blog-phfun-sports-betting-tips__banner-title {
    font-size: 1.8em;
  }
  .page-blog-phfun-sports-betting-tips__banner-description {
    font-size: 1em;
  }
}