.page-betting-platforms {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-betting-platforms__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-betting-platforms__section:last-of-type {
  border-bottom: none;
}

.page-betting-platforms__section-title {
  font-size: 2.5em;
  color: #1A202C;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-betting-platforms__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-betting-platforms__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%);
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
}

.page-betting-platforms__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-betting-platforms__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-betting-platforms__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-betting-platforms__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-betting-platforms__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-betting-platforms__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-betting-platforms__btn--primary:hover {
  background-color: #e5c100;
  border-color: #e5c100;
  transform: translateY(-2px);
}

.page-betting-platforms__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-betting-platforms__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-betting-platforms__btn--small {
  padding: 8px 20px;
  font-size: 0.95em;
  border-radius: 6px;
}

.page-betting-platforms__introduction p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #444;
}

.page-betting-platforms__products {
  background-color: #fff;
}

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

.page-betting-platforms__product-item {
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-platforms__product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-betting-platforms__product-image {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-betting-platforms__product-title {
  font-size: 1.6em;
  color: #1A202C;
  margin-bottom: 15px;
}

.page-betting-platforms__product-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
}

.page-betting-platforms__advantages {
  background-color: #f0f2f5;
}

.page-betting-platforms__advantage-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-betting-platforms__advantage-list li {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-betting-platforms__advantage-list li:hover {
  transform: translateY(-5px);
}

.page-betting-platforms__advantage-title {
  font-size: 1.4em;
  color: #1A202C;
  margin-bottom: 10px;
}

.page-betting-platforms__advantage-list p {
  color: #666;
  font-size: 1em;
}

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

.page-betting-platforms__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-betting-platforms__step-item:hover {
  transform: translateY(-8px);
}

.page-betting-platforms__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  color: #FFD700; /* For SVG icons */
}

.page-betting-platforms__step-title {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 15px;
}

.page-betting-platforms__step-item p {
  color: #555;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-betting-platforms__promotions {
  background-color: #1A202C;
  color: #fff;
}

.page-betting-platforms__promotions .page-betting-platforms__section-title {
  color: #FFD700;
}

.page-betting-platforms__promotions .page-betting-platforms__section-title::after {
  background-color: #fff;
}

.page-betting-platforms__promotion-list {
  list-style: disc;
  margin-left: 20px;
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

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

.page-betting-platforms__promotion-list strong {
  color: #FFD700;
}

.page-betting-platforms__text-center {
  text-align: center;
  margin-top: 30px;
}

.page-betting-platforms__responsible-gambling p, .page-betting-platforms__responsible-gambling li {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 10px;
}

.page-betting-platforms__responsible-list {
  list-style: decimal;
  margin-left: 25px;
  margin-top: 20px;
}

.page-betting-platforms__customer-support {
  background-color: #f0f2f5;
}

.page-betting-platforms__customer-support p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 15px;
}

.page-betting-platforms__support-channels {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-betting-platforms__support-channels li {
  font-size: 1.1em;
  color: #1A202C;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-betting-platforms__support-channels li::before {
  content: '▶';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-size: 0.8em;
  top: 4px;
}

.page-betting-platforms__conclusion p {
  font-size: 1.15em;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

.page-betting-platforms__detail-pages {
  background-color: #fff;
}

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

.page-betting-platforms__detail-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-platforms__detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-betting-platforms__detail-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-betting-platforms__detail-title a {
  color: #1A202C;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-betting-platforms__detail-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
}

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

  .page-betting-platforms__hero-description {
    font-size: 1.1em;
  }

  .page-betting-platforms__section-title {
    font-size: 2em;
  }

  .page-betting-platforms__product-grid, .page-betting-platforms__advantage-list, .page-betting-platforms__guide-steps, .page-betting-platforms__detail-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-betting-platforms__hero-section {
    padding: 60px 0;
    min-height: 400px;
  }

  .page-betting-platforms__hero-title {
    font-size: 2.2em;
  }

  .page-betting-platforms__hero-description {
    font-size: 1em;
  }

  .page-betting-platforms__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-betting-platforms__btn {
    width: 100%;
    max-width: 250px;
  }

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

  .page-betting-platforms__section-title {
    font-size: 1.8em;
  }
}

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

  .page-betting-platforms__hero-description {
    font-size: 0.9em;
  }

  .page-betting-platforms__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-betting-platforms__section-title {
    font-size: 1.5em;
  }

  .page-betting-platforms__product-item, .page-betting-platforms__advantage-list li, .page-betting-platforms__step-item, .page-betting-platforms__detail-item {
    padding: 20px;
  }

  .page-betting-platforms__product-title, .page-betting-platforms__advantage-title, .page-betting-platforms__step-title, .page-betting-platforms__detail-title {
    font-size: 1.2em;
  }
}