/* style/betting-guides.css */
.page-betting-guides {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-betting-guides__hero {
  background: linear-gradient(135deg, #004AAD 0%, #0028ff 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-betting-guides__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  animation: page-betting-guides-float 10s ease-in-out infinite;
}

.page-betting-guides__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  animation: page-betting-guides-float 12s reverse ease-in-out infinite;
}

@keyframes page-betting-guides-float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, 20px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

.page-betting-guides__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-betting-guides__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-betting-guides__section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.page-betting-guides__section--alt-bg {
  background-color: #f0f5fa;
}

.page-betting-guides__section-title {
  font-size: 2.5em;
  color: #004AAD;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-betting-guides__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-betting-guides__sub-title {
  font-size: 1.8em;
  color: #004AAD;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-betting-guides__content-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.page-betting-guides__content-block p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #444;
  flex: 1;
  min-width: 300px;
}

.page-betting-guides__image--full-width {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  object-fit: cover;
}

.page-betting-guides__image--right {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  float: right;
  margin: 0 0 20px 30px;
}

.page-betting-guides__image--left {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  float: left;
  margin: 0 30px 20px 0;
}

.page-betting-guides__list {
  list-style-type: disc;
  margin-left: 25px;
  padding: 0;
  color: #555;
  font-size: 1.1em;
}

.page-betting-guides__list li {
  margin-bottom: 10px;
}

.page-betting-guides__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  cursor: pointer;
  margin-top: 20px;
}

.page-betting-guides__button--primary {
  background-color: #FFD700;
  color: #004AAD;
  border: 2px solid #FFD700;
}

.page-betting-guides__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-betting-guides__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-betting-guides__button--secondary:hover {
  background-color: #FFD700;
  color: #004AAD;
  transform: translateY(-2px);
}

.page-betting-guides__button--small {
  padding: 8px 18px;
  font-size: 0.95em;
  border-radius: 6px;
  background-color: #004AAD;
  color: #FFD700;
  border: 1px solid #004AAD;
}

.page-betting-guides__button--small:hover {
  background-color: #003380;
  color: #FFD700;
}

.page-betting-guides__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-betting-guides__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-betting-guides__card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-betting-guides__card-title {
  font-size: 1.6em;
  color: #004AAD;
  margin-bottom: 15px;
}

.page-betting-guides__card-title a {
  text-decoration: none;
  color: #004AAD;
  transition: color 0.3s ease;
}

.page-betting-guides__card-title a:hover {
  color: #FFD700;
}

.page-betting-guides__card-description {
  color: #555;
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-betting-guides__cta-block {
  background-color: #004AAD;
  color: #ffffff;
  padding: 50px;
  border-radius: 15px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-betting-guides__cta-block p {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-betting-guides__cta-block .page-betting-guides__button {
  margin: 0 10px;
}

.page-betting-guides__grid--detail-pages {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-betting-guides__card--detail {
  padding: 30px;
  text-align: left;
  background-color: #fcfcfc;
  border: 1px solid #eee;
}

.page-betting-guides__card--detail .page-betting-guides__card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-betting-guides__card--detail .page-betting-guides__card-description {
  font-size: 1.05em;
  margin-bottom: 15px;
}

/* Clear floats for images */
.page-betting-guides__content-block::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-betting-guides__hero-title {
    font-size: 3em;
  }
  .page-betting-guides__hero-subtitle {
    font-size: 1.3em;
  }
  .page-betting-guides__section-title {
    font-size: 2em;
  }
  .page-betting-guides__sub-title {
    font-size: 1.6em;
  }
  .page-betting-guides__image--right,
  .page-betting-guides__image--left {
    float: none;
    margin: 20px auto;
    max-width: 100%;
  }
  .page-betting-guides__content-block p {
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .page-betting-guides__hero {
    padding: 60px 0;
  }
  .page-betting-guides__hero-title {
    font-size: 2.5em;
  }
  .page-betting-guides__hero-subtitle {
    font-size: 1.1em;
  }
  .page-betting-guides__section {
    padding: 40px 0;
  }
  .page-betting-guides__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-betting-guides__sub-title {
    font-size: 1.4em;
  }
  .page-betting-guides__grid {
    grid-template-columns: 1fr;
  }
  .page-betting-guides__button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-betting-guides__button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-betting-guides__cta-block {
    padding: 30px;
  }
  .page-betting-guides__cta-block p {
    font-size: 1.2em;
  }
  .page-betting-guides__cta-block .page-betting-guides__button {
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .page-betting-guides__hero-title {
    font-size: 2em;
  }
  .page-betting-guides__hero-subtitle {
    font-size: 1em;
  }
  .page-betting-guides__card-title {
    font-size: 1.4em;
  }
  .page-betting-guides__card-description {
    font-size: 0.9em;
  }
  .page-betting-guides__list {
    font-size: 1em;
  }
}