/* style/betting-strategies-game-selection.css */
.page-betting-strategies-game-selection {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #000000; /* Pure black for overall background */
}

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

.page-betting-strategies-game-selection__hero {
  background: linear-gradient(135deg, #1A237E 0%, #000000 100%); /* Dark blue to black */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-betting-strategies-game-selection__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,dark_pattern]');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-betting-strategies-game-selection__hero > div {
  position: relative;
  z-index: 1;
}

.page-betting-strategies-game-selection__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
  font-weight: bold;
}

.page-betting-strategies-game-selection__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #B0BEC5; /* Lighter gray for subtitle */
}

.page-betting-strategies-game-selection__section {
  padding: 80px 0;
  background-color: #121212; /* Slightly lighter dark for sections */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-betting-strategies-game-selection__section--dark {
  background-color: #0A0A0A; /* Even darker for alternating sections */
}

.page-betting-strategies-game-selection__section--highlight {
  background-color: #1A237E; /* Main brand color for highlight section */
  color: #FFFFFF;
}

.page-betting-strategies-game-selection__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-betting-strategies-game-selection__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #B0BEC5;
}

.page-betting-strategies-game-selection__content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-betting-strategies-game-selection__content-block p {
  flex: 1;
  font-size: 1.05em;
  line-height: 1.8;
  color: #E0E0E0;
}

.page-betting-strategies-game-selection__image {
  flex: 0 0 400px;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.page-betting-strategies-game-selection__image:hover {
  transform: translateY(-5px);
}

.page-betting-strategies-game-selection__image--right {
  order: 2;
}

.page-betting-strategies-game-selection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-betting-strategies-game-selection__grid-item {
  background-color: #1A237E; /* Main brand color for grid items */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-betting-strategies-game-selection__grid-item:hover {
  transform: translateY(-10px);
  background-color: #2C3893; /* Slightly lighter blue on hover */
}

.page-betting-strategies-game-selection__grid-item h3 {
  font-size: 1.6em;
  color: #FFD700; /* Gold for grid item titles */
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-betting-strategies-game-selection__grid-item p {
  font-size: 1em;
  line-height: 1.7;
  color: #E0E0E0;
}

.page-betting-strategies-game-selection__icon {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-betting-strategies-game-selection__game-category {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  padding: 30px;
  background-color: #121212;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-betting-strategies-game-selection__game-category--reverse {
  flex-direction: row-reverse;
  background-color: #0A0A0A;
}

.page-betting-strategies-game-selection__category-image {
  flex: 0 0 500px;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-betting-strategies-game-selection__category-content {
  flex: 1;
}

.page-betting-strategies-game-selection__game-category h3 {
  font-size: 2em;
  color: #FFD700; /* Gold for category titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-betting-strategies-game-selection__game-category p {
  font-size: 1.05em;
  line-height: 1.8;
  color: #E0E0E0;
}

.page-betting-strategies-game-selection__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-betting-strategies-game-selection__list li {
  background-color: rgba(255, 255, 255, 0.05); /* Very subtle light background */
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.7;
  border-left: 5px solid #FFD700; /* Gold accent */
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.page-betting-strategies-game-selection__list li:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-betting-strategies-game-selection__list li strong {
  color: #FFD700;
}

.page-betting-strategies-game-selection__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
  text-align: center;
  cursor: pointer;
}

.page-betting-strategies-game-selection__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-betting-strategies-game-selection__btn--primary:hover {
  background-color: #E5C100; /* Darker gold on hover */
  color: #0A0A0A;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-betting-strategies-game-selection__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-betting-strategies-game-selection__btn--secondary:hover {
  background-color: #FFD700; /* Gold background on hover */
  color: #1A237E; /* Dark blue text on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.page-betting-strategies-game-selection__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-betting-strategies-game-selection__cta {
  background: linear-gradient(45deg, #1A237E, #000000);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-betting-strategies-game-selection__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-betting-strategies-game-selection__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #B0BEC5;
}

.page-betting-strategies-game-selection__accordion {
  margin-top: 50px;
}

.page-betting-strategies-game-selection__accordion-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.page-betting-strategies-game-selection__accordion-header {
  background-color: #1A237E; /* Main brand color for accordion header */
  color: #FFD700; /* Gold text */
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-betting-strategies-game-selection__accordion-header:hover {
  background-color: #2C3893; /* Slightly lighter blue on hover */
}

.page-betting-strategies-game-selection__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-betting-strategies-game-selection__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-betting-strategies-game-selection__accordion-content {
  padding: 0 25px;
  background-color: #0A0A0A;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-betting-strategies-game-selection__accordion-content p {
  padding: 15px 0;
  font-size: 1.05em;
  line-height: 1.7;
  color: #E0E0E0;
}

.page-betting-strategies-game-selection__accordion-content.active {
  max-height: 500px; /* Adjust based on max content height */
  padding: 15px 25px;
}

.page-betting-strategies-game-selection .highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-betting-strategies-game-selection__hero-title {
    font-size: 2.8em;
  }

  .page-betting-strategies-game-selection__hero-subtitle,
  .page-betting-strategies-game-selection__section-description,
  .page-betting-strategies-game-selection__cta-description {
    font-size: 1.1em;
  }

  .page-betting-strategies-game-selection__section-title,
  .page-betting-strategies-game-selection__cta-title {
    font-size: 2em;
  }

  .page-betting-strategies-game-selection__content-block {
    flex-direction: column;
    text-align: center;
  }

  .page-betting-strategies-game-selection__image,
  .page-betting-strategies-game-selection__image--right {
    order: unset;
    max-width: 100%;
    flex: none;
    margin-top: 30px;
  }

  .page-betting-strategies-game-selection__game-category {
    flex-direction: column;
    text-align: center;
  }

  .page-betting-strategies-game-selection__game-category--reverse {
    flex-direction: column;
  }

  .page-betting-strategies-game-selection__category-image {
    max-width: 100%;
    flex: none;
    margin-bottom: 20px;
  }

  .page-betting-strategies-game-selection__grid-item {
    padding: 25px;
  }

  .page-betting-strategies-game-selection__grid-item h3 {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-betting-strategies-game-selection__hero,
  .page-betting-strategies-game-selection__section,
  .page-betting-strategies-game-selection__cta {
    padding: 60px 0;
  }

  .page-betting-strategies-game-selection__hero-title {
    font-size: 2.2em;
  }

  .page-betting-strategies-game-selection__section-title,
  .page-betting-strategies-game-selection__cta-title {
    font-size: 1.8em;
  }

  .page-betting-strategies-game-selection__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }

  .page-betting-strategies-game-selection__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-betting-strategies-game-selection__list li {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-betting-strategies-game-selection__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-betting-strategies-game-selection__accordion-content p {
    font-size: 1em;
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .page-betting-strategies-game-selection__hero-title {
    font-size: 1.8em;
  }

  .page-betting-strategies-game-selection__hero-subtitle {
    font-size: 1em;
  }

  .page-betting-strategies-game-selection__section-title,
  .page-betting-strategies-game-selection__cta-title {
    font-size: 1.5em;
  }

  .page-betting-strategies-game-selection__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }

  .page-betting-strategies-game-selection__game-category {
    padding: 20px;
  }

  .page-betting-strategies-game-selection__category-image {
    height: 200px;
  }
}