/* style/resources-m99-betting-guide.css */
:root {
  --primary-color: #0A1931;
  --secondary-color: #FFD700;
  --accent-color: #DC143C; /* Deep Red for highlights/errors */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #000;
  --bg-light: #f8f9fa;
  --card-bg: rgba(255, 255, 255, 0.1);
}

.page-resources-m99-betting-guide {
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Inherited from shared.css body */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Padding for fixed header on desktop */
}

.page-resources-m99-betting-guide__hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a44 100%);
  padding: 80px 20px;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.page-resources-m99-betting-guide__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-resources-m99-betting-guide__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-m99-betting-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-resources-m99-betting-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-m99-betting-guide__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-m99-betting-guide__btn-primary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-resources-m99-betting-guide__btn-primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-m99-betting-guide__btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-resources-m99-betting-guide__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-m99-betting-guide__section {
  padding: 60px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-m99-betting-guide__section:last-of-type {
  border-bottom: none;
}

.page-resources-m99-betting-guide__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-resources-m99-betting-guide__section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-resources-m99-betting-guide__content-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-m99-betting-guide__content-block p,
.page-resources-m99-betting-guide__content-block li {
  color: #f0f0f0;
  margin-bottom: 15px;
}

.page-resources-m99-betting-guide__sub-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.page-resources-m99-betting-guide__list,
.page-resources-m99-betting-guide__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-resources-m99-betting-guide__ordered-list {
  list-style-type: decimal;
}

.page-resources-m99-betting-guide__list li,
.page-resources-m99-betting-guide__ordered-list li {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-resources-m99-betting-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Specific section backgrounds for visual distinction */
.page-resources-m99-betting-guide__about-m99 {
  background-color: var(--primary-color);
}

.page-resources-m99-betting-guide__registration-guide {
  background-color: #0d1e3a;
}

.page-resources-m99-betting-guide__transactions {
  background-color: var(--primary-color);
}

.page-resources-m99-betting-guide__game-collection {
  background-color: #0d1e3a;
}

.page-resources-m99-betting-guide__promotions {
  background-color: var(--primary-color);
}

.page-resources-m99-betting-guide__security-fairness {
  background-color: #0d1e3a;
}

.page-resources-m99-betting-guide__customer-support {
  background-color: var(--primary-color);
}

.page-resources-m99-betting-guide__responsible-gambling {
  background-color: #0d1e3a;
}

.page-resources-m99-betting-guide__conclusion {
  background-color: var(--primary-color);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-m99-betting-guide__main-title {
    font-size: 2.8em;
  }
  .page-resources-m99-betting-guide__section-title {
    font-size: 2.2em;
  }
  .page-resources-m99-betting-guide__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-m99-betting-guide {
    padding-top: 100px !important; /* Adjust for mobile fixed header */
    font-size: 15px;
  }

  .page-resources-m99-betting-guide__hero-section {
    padding: 60px 15px;
  }

  .page-resources-m99-betting-guide__main-title {
    font-size: 2.2em;
  }

  .page-resources-m99-betting-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-m99-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-resources-m99-betting-guide__cta-button {
    width: 100% !important;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-m99-betting-guide__section {
    padding: 40px 15px;
  }

  .page-resources-m99-betting-guide__container {
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-resources-m99-betting-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-m99-betting-guide__content-block {
    padding: 20px;
    margin: 0 15px 20px 15px;
  }

  .page-resources-m99-betting-guide__sub-title {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-resources-m99-betting-guide__list,
  .page-resources-m99-betting-guide__ordered-list {
    margin-left: 20px;
  }
  
  .page-resources-m99-betting-guide__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
    border-radius: 4px;
  }
}

@media (max-width: 480px) {
  .page-resources-m99-betting-guide__main-title {
    font-size: 1.8em;
  }
  .page-resources-m99-betting-guide__section-title {
    font-size: 1.6em;
  }
  .page-resources-m99-betting-guide__sub-title {
    font-size: 1.2em;
  }
  .page-resources-m99-betting-guide__hero-description {
    font-size: 0.95em;
  }
  .page-resources-m99-betting-guide__content-block p,
  .page-resources-m99-betting-guide__content-block li {
    font-size: 0.9em;
  }
}