/* style/blog-gacam67-hot-matches-tips.css */

:root {
  --primary-color: #C61F1F;
  --secondary-color: #E53030;
  --button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  --card-bg: #2A1212;
  --page-bg: #140C0C;
  --text-main: #FFF1E8;
  --border-color: #6A1E1E;
  --gold-color: #F3C54D;
  --deep-red: #7E0D0D;
}

.page-blog-gacam67-hot-matches-tips {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Default text color for the page */
  background-color: var(--page-bg); /* Page background color */
}

.page-blog-gacam67-hot-matches-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-gacam67-hot-matches-tips__section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-gacam67-hot-matches-tips__section:nth-of-type(even) {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly different background for alternating sections */
}

.page-blog-gacam67-hot-matches-tips__heading {
  font-size: 36px;
  color: var(--gold-color);
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-gacam67-hot-matches-tips__paragraph {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-blog-gacam67-hot-matches-tips__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 900px;
  text-align: left;
}

.page-blog-gacam67-hot-matches-tips__list-item {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: var(--text-main);
}

.page-blog-gacam67-hot-matches-tips__list-item::before {
  content: '✓';
  color: var(--gold-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* HERO Section */
.page-blog-gacam67-hot-matches-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-blog-gacam67-hot-matches-tips__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-blog-gacam67-hot-matches-tips__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-blog-gacam67-hot-matches-tips__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-gacam67-hot-matches-tips__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-blog-gacam67-hot-matches-tips__main-title {
  font-size: clamp(28px, 4vw, 48px); /* Clamp for responsive H1 */
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-gacam67-hot-matches-tips__subtitle {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--text-main);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-blog-gacam67-hot-matches-tips__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  border: none;
}

.page-blog-gacam67-hot-matches-tips__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  filter: brightness(1.1);
}

/* Grid for feature cards */
.page-blog-gacam67-hot-matches-tips__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-blog-gacam67-hot-matches-tips__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-blog-gacam67-hot-matches-tips__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-gacam67-hot-matches-tips__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--deep-red);
}

.page-blog-gacam67-hot-matches-tips__card-title {
  font-size: 24px;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.page-blog-gacam67-hot-matches-tips__card-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-main);
  flex-grow: 1; /* Make text fill available space */
}

/* Content Grid for Match Analysis */
.page-blog-gacam67-hot-matches-tips__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-blog-gacam67-hot-matches-tips__content-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-blog-gacam67-hot-matches-tips__content-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-gacam67-hot-matches-tips__content-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--deep-red);
}

.page-blog-gacam67-hot-matches-tips__cta-block {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

/* FAQ Section */
details.page-blog-gacam67-hot-matches-tips__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  color: var(--text-main);
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
details.page-blog-gacam67-hot-matches-tips__faq-item summary.page-blog-gacam67-hot-matches-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-weight: 600;
  font-size: 18px;
  color: var(--gold-color);
}
details.page-blog-gacam67-hot-matches-tips__faq-item summary.page-blog-gacam67-hot-matches-tips__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-gacam67-hot-matches-tips__faq-item summary.page-blog-gacam67-hot-matches-tips__faq-question:hover {
  background: rgba(255, 255, 255, 0.08);
}
.page-blog-gacam67-hot-matches-tips__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.page-blog-gacam67-hot-matches-tips__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--gold-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-blog-gacam67-hot-matches-tips__faq-item .page-blog-gacam67-hot-matches-tips__faq-answer {
  padding: 0 25px 25px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 10px 10px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-main);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-gacam67-hot-matches-tips__container {
    padding: 30px 15px;
  }
  .page-blog-gacam67-hot-matches-tips__heading {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .page-blog-gacam67-hot-matches-tips__paragraph,
  .page-blog-gacam67-hot-matches-tips__list-item,
  .page-blog-gacam67-hot-matches-tips__card-text {
    font-size: 16px;
  }
  .page-blog-gacam67-hot-matches-tips__card-title {
    font-size: 22px;
  }
  .page-blog-gacam67-hot-matches-tips__cta-button {
    font-size: 18px;
    padding: 12px 30px;
  }
}

@media (max-width: 768px) {
  .page-blog-gacam67-hot-matches-tips__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-gacam67-hot-matches-tips__hero-image img {
    border-radius: 8px;
  }
  .page-blog-gacam67-hot-matches-tips__main-title {
    font-size: 32px;
  }
  .page-blog-gacam67-hot-matches-tips__subtitle {
    font-size: 18px;
  }
  .page-blog-gacam67-hot-matches-tips__heading {
    font-size: 26px;
  }
  .page-blog-gacam67-hot-matches-tips__section {
    padding: 40px 0;
  }
  .page-blog-gacam67-hot-matches-tips__grid,
  .page-blog-gacam67-hot-matches-tips__content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-gacam67-hot-matches-tips__card {
    padding: 20px;
  }
  .page-blog-gacam67-hot-matches-tips__card-image,
  .page-blog-gacam67-hot-matches-tips__content-image {
    height: 160px;
  }
  .page-blog-gacam67-hot-matches-tips__paragraph,
  .page-blog-gacam67-hot-matches-tips__list-item {
    font-size: 15px;
  }
  details.page-blog-gacam67-hot-matches-tips__faq-item summary.page-blog-gacam67-hot-matches-tips__faq-question {
    padding: 15px;
    font-size: 16px;
  }
  .page-blog-gacam67-hot-matches-tips__faq-qtext {
    font-size: 16px;
  }
  .page-blog-gacam67-hot-matches-tips__faq-toggle {
    font-size: 24px;
  }
  details.page-blog-gacam67-hot-matches-tips__faq-item .page-blog-gacam67-hot-matches-tips__faq-answer {
    padding: 0 15px 15px;
  }
  
  /* Mobile image responsive */
  .page-blog-gacam67-hot-matches-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-gacam67-hot-matches-tips__section,
  .page-blog-gacam67-hot-matches-tips__card,
  .page-blog-gacam67-hot-matches-tips__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-gacam67-hot-matches-tips__cta-button,
  .page-blog-gacam67-hot-matches-tips a[class*="button"],
  .page-blog-gacam67-hot-matches-tips 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-gacam67-hot-matches-tips__cta-buttons,
  .page-blog-gacam67-hot-matches-tips__button-group,
  .page-blog-gacam67-hot-matches-tips__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-blog-gacam67-hot-matches-tips__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-blog-gacam67-hot-matches-tips__main-title {
    font-size: 28px;
  }
  .page-blog-gacam67-hot-matches-tips__subtitle {
    font-size: 16px;
  }
  .page-blog-gacam67-hot-matches-tips__heading {
    font-size: 22px;
  }
  .page-blog-gacam67-hot-matches-tips__cta-button {
    font-size: 16px;
    padding: 10px 25px;
  }
}