.page-sports-live-betting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: var(--secondary-color, #ffffff);
}

.page-sports-live-betting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-sports-live-betting__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding-top: var(--header-offset, 120px);
    box-sizing: border-box;
}

.page-sports-live-betting__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-sports-live-betting__hero-section .page-sports-live-betting__container {
    position: relative;
    z-index: 2;
}

.page-sports-live-betting__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: #ffffff;
}

.page-sports-live-betting__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-sports-live-betting__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-sports-live-betting__btn-primary,
.page-sports-live-betting__btn-secondary,
.page-sports-live-betting__btn-link {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
}

.page-sports-live-betting__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-sports-live-betting__btn-primary:hover {
    background-color: #1a8cc2;
    border-color: #1a8cc2;
}

.page-sports-live-betting__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-sports-live-betting__btn-secondary:hover {
    background-color: #ffffff;
    color: #26A9E0;
}

.page-sports-live-betting__btn-link {
    background-color: transparent;
    color: #26A9E0;
    border: 1px solid #26A9E0;
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-sports-live-betting__btn-link:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-sports-live-betting__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #26A9E0;
    font-weight: bold;
}

.page-sports-live-betting__section-title--white {
    color: #ffffff;
}

.page-sports-live-betting__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #333333;
}

.page-sports-live-betting__text-block--white {
    color: #f0f0f0;
}

.page-sports-live-betting__intro-section,
.page-sports-live-betting__features-section,
.page-sports-live-betting__how-to-start,
.page-sports-live-betting__security-section,
.page-sports-live-betting__cta-section {
    padding: 80px 0;
}

.page-sports-live-betting__dark-bg {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-sports-live-betting__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-sports-live-betting__video-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.page-sports-live-betting__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-top: 40px;
    background-color: #000;
    border-radius: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-sports-live-betting__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    cursor: pointer;
}

.page-sports-live-betting__video-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

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

.page-sports-live-betting__feature-card,
.page-sports-live-betting__promo-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #333333;
}

.page-sports-live-betting__feature-card:hover,
.page-sports-live-betting__promo-card:hover {
    transform: translateY(-10px);
}

.page-sports-live-betting__feature-icon,
.page-sports-live-betting__promo-icon {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
    border-radius: 8px;
}

.page-sports-live-betting__feature-title,
.page-sports-live-betting__promo-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #26A9E0;
    font-weight: bold;
}

.page-sports-live-betting__feature-description,
.page-sports-live-betting__promo-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-sports-live-betting__sports-overview {
    padding: 80px 0;
    text-align: center;
}

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

.page-sports-live-betting__sport-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-sports-live-betting__sport-icon {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: 0 auto 15px auto;
    display: block;
    border-radius: 8px;
}

.page-sports-live-betting__sport-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: bold;
}

.page-sports-live-betting__sport-description {
    font-size: 0.95em;
    color: #f0f0f0;
}

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

.page-sports-live-betting__step-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333333;
}

.page-sports-live-betting__step-number {
    width: 50px;
    height: 50px;
    background-color: #26A9E0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-sports-live-betting__step-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #26A9E0;
    font-weight: bold;
}

.page-sports-live-betting__step-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-sports-live-betting__cta-center {
    text-align: center;
    margin-top: 50px;
}

.page-sports-live-betting__security-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-sports-live-betting__security-item {
    background-color: #f8f8f8;
    border-left: 5px solid #26A9E0;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #333333;
}

.page-sports-live-betting__security-title {
    font-size: 1.3em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-sports-live-betting__security-description {
    font-size: 0.95em;
    color: #555555;
}

.page-sports-live-betting__faq-section {
    padding: 80px 0;
}

.page-sports-live-betting__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-sports-live-betting__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-sports-live-betting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.page-sports-live-betting__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-sports-live-betting__faq-title {
    font-size: 1.2em;
    margin: 0;
    font-weight: bold;
    color: #ffffff;
}

.page-sports-live-betting__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: #ffffff;
}

.page-sports-live-betting__faq-item.active .page-sports-live-betting__faq-toggle {
    transform: rotate(45deg);
}

.page-sports-live-betting__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.03);
    color: #f0f0f0;
}

.page-sports-live-betting__faq-item.active .page-sports-live-betting__faq-answer {
    max-height: 1000px !important; /* Sufficiently large */
    padding: 20px;
}

.page-sports-live-betting__faq-answer p {
    margin-bottom: 0;
    color: #f0f0f0;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-sports-live-betting__hero-title {
        font-size: 3em;
    }
    .page-sports-live-betting__hero-description {
        font-size: 1.1em;
    }
    .page-sports-live-betting__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-sports-live-betting__hero-section {
        min-height: 500px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-sports-live-betting__hero-title {
        font-size: 2.2em;
    }
    .page-sports-live-betting__hero-description {
        font-size: 1em;
    }
    .page-sports-live-betting__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-sports-live-betting__btn-primary,
    .page-sports-live-betting__btn-secondary,
    .page-sports-live-betting__btn-link {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-sports-live-betting__intro-section,
    .page-sports-live-betting__features-section,
    .page-sports-live-betting__how-to-start,
    .page-sports-live-betting__security-section,
    .page-sports-live-betting__cta-section,
    .page-sports-live-betting__video-section,
    .page-sports-live-betting__sports-overview,
    .page-sports-live-betting__promotions-section,
    .page-sports-live-betting__faq-section {
        padding: 50px 0;
    }
    .page-sports-live-betting__container {
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    .page-sports-live-betting__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-sports-live-betting__text-block {
        font-size: 0.95em;
    }

    /* Image responsiveness */
    .page-sports-live-betting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-sports-live-betting__feature-card,
    .page-sports-live-betting__promo-card,
    .page-sports-live-betting__sport-card,
    .page-sports-live-betting__step-card,
    .page-sports-live-betting__security-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Video responsiveness */
    .page-sports-live-betting video,
    .page-sports-live-betting__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-sports-live-betting__video-section,
    .page-sports-live-betting__video-container,
    .page-sports-live-betting__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-sports-live-betting__video-wrapper {
        padding-bottom: 56.25% !important;
    }

    /* Button responsiveness */
    .page-sports-live-betting__cta-button,
    .page-sports-live-betting__btn-primary,
    .page-sports-live-betting__btn-secondary,
    .page-sports-live-betting a[class*="button"],
    .page-sports-live-betting a[class*="btn"] {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      white-space: normal !important;
      word-wrap: break-word !important;
      padding-left: 15px;
      padding-right: 15px;
    }
    .page-sports-live-betting__cta-buttons,
    .page-sports-live-betting__button-group,
    .page-sports-live-betting__btn-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      flex-wrap: wrap !important;
      gap: 10px;
      flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-sports-live-betting__hero-title {
        font-size: 1.8em;
    }
    .page-sports-live-betting__section-title {
        font-size: 1.5em;
    }
    .page-sports-live-betting__feature-grid,
    .page-sports-live-betting__promo-grid,
    .page-sports-live-betting__sports-grid,
    .page-sports-live-betting__steps-grid,
    .page-sports-live-betting__security-points {
        grid-template-columns: 1fr;
    }
    .page-sports-live-betting__faq-title {
        font-size: 1em;
    }
    .page-sports-live-betting__faq-question {
        padding: 15px;
    }
    .page-sports-live-betting__faq-answer {
        padding: 15px;
    }
    .page-sports-live-betting__feature-icon,
    .page-sports-live-betting__promo-icon,
    .page-sports-live-betting__sport-icon {
        max-width: 150px;
    }
}