/* style/sports-betting-live-streams.css */

.page-sports-betting-live-streams {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

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

.page-sports-betting-live-streams__section {
  padding: 60px 0;
  text-align: center;
}

.page-sports-betting-live-streams__section-title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-sports-betting-live-streams__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-sports-betting-live-streams__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

.page-sports-betting-live-streams__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: rotate(-30deg);
}

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

.page-sports-betting-live-streams__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-sports-betting-live-streams__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;
  border: none;
  cursor: pointer;
}

.page-sports-betting-live-streams__btn--primary {
  background-color: #ffc107;
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-sports-betting-live-streams__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-sports-betting-live-streams__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sports-betting-live-streams__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-sports-betting-live-streams__btn--inline {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

.page-sports-betting-live-streams__btn--inline:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

.page-sports-betting-live-streams__grid {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-sports-betting-live-streams__grid--reverse {
  flex-direction: row-reverse;
}

.page-sports-betting-live-streams__content-block {
  flex: 1;
}

.page-sports-betting-live-streams__content-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #555;
}

.page-sports-betting-live-streams__content-block a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-sports-betting-live-streams__content-block a:hover {
  text-decoration: underline;
}

.page-sports-betting-live-streams__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-sports-betting-live-streams__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-sports-betting-live-streams__features, .page-sports-betting-live-streams__benefits {
  background-color: #fff;
}

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

.page-sports-betting-live-streams__feature-item, .page-sports-betting-live-streams__benefit-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports-betting-live-streams__feature-item:hover, .page-sports-betting-live-streams__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-sports-betting-live-streams__feature-icon, .page-sports-betting-live-streams__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 123, 255, 0.3));
}

.page-sports-betting-live-streams__feature-title, .page-sports-betting-live-streams__benefit-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-sports-betting-live-streams__feature-item p, .page-sports-betting-live-streams__benefit-item p {
  color: #666;
  font-size: 1em;
}

.page-sports-betting-live-streams__how-to {
  background-color: #f9f9f9;
}

.page-sports-betting-live-streams__steps {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-sports-betting-live-streams__step-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  padding-top: 70px;
}

.page-sports-betting-live-streams__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-sports-betting-live-streams__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffc107;
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.page-sports-betting-live-streams__step-title {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-sports-betting-live-streams__step-item p {
  color: #666;
  font-size: 0.95em;
}

.page-sports-betting-live-streams__step-item a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-sports-betting-live-streams__step-item a:hover {
  text-decoration: underline;
}

.page-sports-betting-live-streams__cta-bottom {
  margin-top: 60px;
}

.page-sports-betting-live-streams__app {
  background-color: #f0f8ff;
}

.page-sports-betting-live-streams__responsible-gambling {
  background-color: #fff;
  padding: 80px 0;
}

.page-sports-betting-live-streams__responsible-gambling p {
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #555;
  font-size: 1.1em;
}

.page-sports-betting-live-streams__cta-final {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 80px 0;
}

.page-sports-betting-live-streams__cta-final .page-sports-betting-live-streams__section-title {
  color: #fff;
}

.page-sports-betting-live-streams__cta-final .page-sports-betting-live-streams__section-title::after {
  background-color: #ffc107;
}

.page-sports-betting-live-streams__cta-final p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-sports-betting-live-streams__hero-title {
    font-size: 2.8em;
  }
  .page-sports-betting-live-streams__section-title {
    font-size: 2em;
  }
  .page-sports-betting-live-streams__grid {
    flex-direction: column;
    text-align: center;
  }
  .page-sports-betting-live-streams__grid--reverse {
    flex-direction: column-reverse;
  }
  .page-sports-betting-live-streams__image-wrapper {
    margin-top: 30px;
  }
  .page-sports-betting-live-streams__feature-grid, .page-sports-betting-live-streams__benefit-grid, .page-sports-betting-live-streams__steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-sports-betting-live-streams__hero {
    padding: 80px 0;
  }
  .page-sports-betting-live-streams__hero-title {
    font-size: 2.2em;
  }
  .page-sports-betting-live-streams__hero-subtitle {
    font-size: 1.1em;
  }
  .page-sports-betting-live-streams__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports-betting-live-streams__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-sports-betting-live-streams__section {
    padding: 40px 0;
  }
  .page-sports-betting-live-streams__section-title {
    font-size: 1.8em;
  }
  .page-sports-betting-live-streams__feature-item, .page-sports-betting-live-streams__benefit-item, .page-sports-betting-live-streams__step-item {
    max-width: 100%;
    padding: 25px;
    padding-top: 60px;
  }
  .page-sports-betting-live-streams__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-sports-betting-live-streams__final-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-sports-betting-live-streams__hero-title {
    font-size: 1.8em;
  }
  .page-sports-betting-live-streams__section-title {
    font-size: 1.5em;
  }
  .page-sports-betting-live-streams__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-sports-betting-live-streams__content-block p {
    font-size: 1em;
  }
  .page-sports-betting-live-streams__responsible-gambling p {
    font-size: 1em;
  }
  .page-sports-betting-live-streams__cta-final p {
    font-size: 1em;
  }
}