/* style/betting-guide.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light-gray: #f8f8f8;
  --border-color: #e0e0e0;
}

.page-betting-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.page-betting-guide .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-betting-guide .text-center {
  text-align: center;
}

.page-betting-guide .text-light {
  color: var(--text-light);
}

.page-betting-guide h1,
.page-betting-guide h2,
.page-betting-guide h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-betting-guide h1 {
  font-size: 2.8em;
  color: var(--text-light);
}

.page-betting-guide h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-betting-guide h3 {
  font-size: 1.6em;
  margin-top: 25px;
}

.page-betting-guide p {
  margin-bottom: 15px;
}

.page-betting-guide ol,
.page-betting-guide ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.page-betting-guide ol li,
.page-betting-guide ul li {
  margin-bottom: 8px;
}

/* Hero Section */
.page-betting-guide .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #a01a1a 100%); /* Adjusted for better contrast on text */
  color: var(--text-light);
  overflow: hidden;
}

.page-betting-guide .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-betting-guide .hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-betting-guide .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-betting-guide .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.page-betting-guide .hero-content h1 {
  margin-bottom: 20px;
  font-size: 3em;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-betting-guide .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-guide .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-betting-guide .cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-betting-guide .cta-button-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-betting-guide .cta-button-secondary:hover {
  background: #a01a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* General Sections */
.page-betting-guide section {
  padding: 60px 0;
}

.page-betting-guide .intro-section {
  background: var(--bg-light-gray);
}

.page-betting-guide .register-bonus-section {
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.page-betting-guide .games-section {
  background: #ffffff;
}

.page-betting-guide .payment-support-section {
  background: linear-gradient(135deg, #222222 0%, #444444 100%);
  color: var(--text-light);
}

.page-betting-guide .faq-section {
  background: var(--bg-light-gray);
}

.page-betting-guide .blog-section {
  background: #ffffff;
}

/* Grid Layouts */
.page-betting-guide .grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-betting-guide .grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
  align-items: center;
}

/* Cards */
.page-betting-guide .card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure equal height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-betting-guide .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-betting-guide .card-img {
  width: 100%;
  height: 200px; /* Fixed height for image */
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.page-betting-guide .game-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-betting-guide .game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-betting-guide .game-img {
  width: 100%;
  height: 220px; /* Fixed height for game images */
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
}

.page-betting-guide .game-card h3 {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-betting-guide .game-card p {
  flex-grow: 1;
  font-size: 0.95em;
}

.page-betting-guide .read-more-link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.page-betting-guide .read-more-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-betting-guide .blog-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-betting-guide .blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.page-betting-guide .blog-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.page-betting-guide .blog-card h3 {
  font-size: 1.3em;
  margin: 15px 15px 10px 15px;
  color: var(--secondary-color);
}

.page-betting-guide .blog-card h3 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-betting-guide .blog-card h3 a:hover {
  color: var(--primary-color);
}

.page-betting-guide .blog-card p {
  font-size: 0.9em;
  color: #666;
  padding: 0 15px;
  flex-grow: 1;
}

.page-betting-guide .blog-date {
  font-size: 0.8em;
  color: #999;
  padding: 0 15px 15px 15px;
  display: block;
  margin-top: 10px;
}

/* Content Blocks */
.page-betting-guide .content-block {
  padding: 20px;
}

.page-betting-guide .full-width-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-betting-guide .mt-20 {
  margin-top: 20px;
}

.page-betting-guide .mt-40 {
  margin-top: 40px;
}

/* FAQ Section */
.page-betting-guide .faq-list {
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-guide .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-betting-guide .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-betting-guide .faq-question:hover {
  background: #f5f5f5;
}

.page-betting-guide .faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: var(--text-dark);
}

.page-betting-guide .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-betting-guide .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.page-betting-guide .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #fdfdfd;
  color: #555;
}

.page-betting-guide .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-betting-guide .hero-content h1 {
    font-size: 2.5em;
  }

  .page-betting-guide h2 {
    font-size: 1.8em;
  }

  .page-betting-guide h3 {
    font-size: 1.4em;
  }

  .page-betting-guide .grid-3-cols, .page-betting-guide .grid-2-cols {
    grid-template-columns: 1fr;
  }

  .page-betting-guide .card, .page-betting-guide .game-card, .page-betting-guide .blog-card {
    margin-bottom: 20px;
  }

  .page-betting-guide .card-img, .page-betting-guide .game-img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-betting-guide .hero-section {
    padding: 40px 15px;
  }

  .page-betting-guide .hero-content h1 {
    font-size: 2em;
  }

  .page-betting-guide .hero-content p {
    font-size: 1em;
  }

  .page-betting-guide .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-betting-guide section {
    padding: 40px 0;
  }

  .page-betting-guide .container {
    padding: 0 15px;
  }

  .page-betting-guide h2 {
    font-size: 1.6em;
  }

  .page-betting-guide h3 {
    font-size: 1.2em;
  }

  .page-betting-guide .card, .page-betting-guide .game-card, .page-betting-guide .blog-card {
    padding: 20px;
  }

  .page-betting-guide .faq-question {
    padding: 12px 15px;
  }

  .page-betting-guide .faq-question h3 {
    font-size: 1em;
  }

  .page-betting-guide .faq-toggle {
    font-size: 1.5em;
  }

  .page-betting-guide .faq-answer {
    padding: 15px;
  }

  .page-betting-guide .blog-img {
    height: 150px;
  }

  .page-betting-guide .blog-card h3 {
    font-size: 1.1em;
    margin: 10px 15px;
  }
}

@media (max-width: 480px) {
  .page-betting-guide .hero-content h1 {
    font-size: 1.8em;
  }

  .page-betting-guide .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }

  .page-betting-guide h2 {
    font-size: 1.4em;
  }

  .page-betting-guide h3 {
    font-size: 1.1em;
  }

  .page-betting-guide .card-img, .page-betting-guide .game-img {
    height: 150px;
  }
}