/* style/betting-platform-reviews-sportsbook.css */

.page-betting-platform-reviews-sportsbook {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  line-height: 1.6;
  background-color: #0A192F; /* Main dark blue background */
}

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

.page-betting-platform-reviews-sportsbook__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1A2E4C 100%); /* Dark blue gradient */
  color: #FFD700; /* Gold for hero text */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-betting-platform-reviews-sportsbook__hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  filter: blur(50px);
  animation: floatEffect 10s ease-in-out infinite alternate;
}

.page-betting-platform-reviews-sportsbook__hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  filter: blur(40px);
  animation: floatEffect 12s ease-in-out infinite alternate-reverse;
}

@keyframes floatEffect {
  0% { transform: translate(0, 0); }
  50% { transform: translate(20px, 20px); }
  100% { transform: translate(0, 0); }
}

.page-betting-platform-reviews-sportsbook__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.page-betting-platform-reviews-sportsbook__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #C0C0C0; /* Lighter gray for description */
}

.page-betting-platform-reviews-sportsbook__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA buttons */
  color: #0A192F; /* Dark blue for button text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-betting-platform-reviews-sportsbook__cta-button:hover {
  background-color: #E6C200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-betting-platform-reviews-sportsbook__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-betting-platform-reviews-sportsbook__cta-button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-betting-platform-reviews-sportsbook__content-section {
  padding: 60px 0;
  background-color: #0A192F;
}

.page-betting-platform-reviews-sportsbook__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section titles */
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-betting-platform-reviews-sportsbook__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-betting-platform-reviews-sportsbook p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-betting-platform-reviews-sportsbook .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-betting-platform-reviews-sportsbook__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-betting-platform-reviews-sportsbook__image--full-width {
  width: 100%;
}

.page-betting-platform-reviews-sportsbook__image--right {
  float: right;
  margin-left: 20px;
  width: 40%;
  max-width: 400px;
}

@media (max-width: 768px) {
  .page-betting-platform-reviews-sportsbook__image--right {
    float: none;
    margin: 30px auto;
    width: 80%;
    display: block;
  }
}

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

.page-betting-platform-reviews-sportsbook__feature-item {
  background-color: #1A2E4C; /* Darker blue for feature cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-betting-platform-reviews-sportsbook__feature-item:hover {
  transform: translateY(-5px);
}

.page-betting-platform-reviews-sportsbook__feature-title {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-betting-platform-reviews-sportsbook__registration-steps {
  list-style: decimal;
  margin-left: 20px;
  padding-left: 0;
  color: #E0E0E0;
}

.page-betting-platform-reviews-sportsbook__registration-steps li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-betting-platform-reviews-sportsbook__pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.page-betting-platform-reviews-sportsbook__pros, .page-betting-platform-reviews-sportsbook__cons {
  background-color: #1A2E4C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-betting-platform-reviews-sportsbook__pros ul, .page-betting-platform-reviews-sportsbook__cons ul {
  list-style: none;
  padding: 0;
}

.page-betting-platform-reviews-sportsbook__pros li {
  color: #90EE90; /* Light green for pros */
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-betting-platform-reviews-sportsbook__pros li::before {
  content: '✓';
  color: #90EE90;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-betting-platform-reviews-sportsbook__cons li {
  color: #FF6347; /* Tomato red for cons */
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-betting-platform-reviews-sportsbook__cons li::before {
  content: '✗';
  color: #FF6347;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-betting-platform-reviews-sportsbook__final-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #1A2E4C;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .page-betting-platform-reviews-sportsbook__main-title {
    font-size: 2.5em;
  }

  .page-betting-platform-reviews-sportsbook__section-title {
    font-size: 1.8em;
  }

  .page-betting-platform-reviews-sportsbook__sub-title {
    font-size: 1.5em;
  }

  .page-betting-platform-reviews-sportsbook__feature-grid,
  .page-betting-platform-reviews-sportsbook__pros-cons {
    grid-template-columns: 1fr;
  }

  .page-betting-platform-reviews-sportsbook__hero-section {
    padding: 80px 0;
  }
}