/* style/live-streaming-popular-events.css */
.page-live-streaming-popular-events {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6; /* Light background for general content */
}

.page-live-streaming-popular-events__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-live-streaming-popular-events__section {
    padding: 60px 0;
    text-align: center;
}

.page-live-streaming-popular-events__section:nth-of-type(even) {
    background-color: #e9ecef;
}

.page-live-streaming-popular-events__section-title {
    font-size: 2.8em;
    color: #0A244A; /* Deep blue for titles */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-live-streaming-popular-events__section-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-live-streaming-popular-events__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    margin: 10px;
}

.page-live-streaming-popular-events__button--primary {
    background-color: #FFD700; /* Gold for primary actions */
    color: #0A244A; /* Deep blue text for contrast */
}

.page-live-streaming-popular-events__button--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-live-streaming-popular-events__button--secondary {
    background-color: #0A244A; /* Deep blue for secondary actions */
    color: #FFD700; /* Gold text for contrast */
    border: 2px solid #FFD700;
}

.page-live-streaming-popular-events__button--secondary:hover {
    background-color: #1a3a60; /* Slightly lighter blue on hover */
    transform: translateY(-2px);
}

.page-live-streaming-popular-events__button--small {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
    margin: 0 5px;
}

/* Hero Section */
.page-live-streaming-popular-events__hero {
    position: relative;
    background-color: #0A244A; /* Deep blue background */
    color: #fff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    overflow: hidden;
}

.page-live-streaming-popular-events__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-live-streaming-popular-events__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 20px;
}

.page-live-streaming-popular-events__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: 900;
    color: #FFD700; /* Gold for main title */
    line-height: 1.1;
}

.page-live-streaming-popular-events__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f0f0f0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-live-streaming-popular-events__hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Why Choose Section */
.page-live-streaming-popular-events__why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-live-streaming-popular-events__why-choose-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-live-streaming-popular-events__why-choose-item:hover {
    transform: translateY(-5px);
}

.page-live-streaming-popular-events__item-title {
    font-size: 1.5em;
    color: #0A244A; /* Deep blue for item titles */
    margin-bottom: 15px;
}

.page-live-streaming-popular-events__why-choose-item p {
    color: #666;
}

.page-live-streaming-popular-events__feature-image {
    max-width: 100%;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Sports Categories Section */
.page-live-streaming-popular-events__categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-live-streaming-popular-events__category-card {
    background-color: #0A244A;
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.page-live-streaming-popular-events__category-card:hover {
    background-color: #1a3a60;
}

.page-live-streaming-popular-events__category-card .page-live-streaming-popular-events__card-title {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-live-streaming-popular-events__category-card p {
    font-size: 0.95em;
    color: #e0e0e0;
}

.page-live-streaming-popular-events__sports-image {
    max-width: 100%;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* How To Access Section */
.page-live-streaming-popular-events__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-live-streaming-popular-events__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-live-streaming-popular-events__step-number {
    background-color: #FFD700;
    color: #0A244A;
    font-size: 1.8em;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.page-live-streaming-popular-events__step-item p {
    color: #666;
}

.page-live-streaming-popular-events__step-item a {
    color: #0A244A;
    font-weight: bold;
    text-decoration: none;
}

.page-live-streaming-popular-events__step-item a:hover {
    text-decoration: underline;
}

.page-live-streaming-popular-events__access-image {
    max-width: 100%;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Live Events Section */
.page-live-streaming-popular-events__tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #ddd;
}

.page-live-streaming-popular-events__tab-button {
    background-color: transparent;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.page-live-streaming-popular-events__tab-button--active {
    color: #0A244A;
    border-bottom: 3px solid #FFD700;
}

.page-live-streaming-popular-events__tab-button:hover:not(.page-live-streaming-popular-events__tab-button--active) {
    color: #0A244A;
}

.page-live-streaming-popular-events__tab-content {
    display: none;
    text-align: left;
    margin-top: 30px;
}

.page-live-streaming-popular-events__tab-content--active {
    display: block;
}

.page-live-streaming-popular-events__event-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-live-streaming-popular-events__event-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.page-live-streaming-popular-events__event-time {
    font-weight: bold;
    color: #0A244A;
    min-width: 80px;
}

.page-live-streaming-popular-events__event-match {
    flex-grow: 1;
    font-size: 1.1em;
    color: #333;
    margin: 0 15px;
}

.page-live-streaming-popular-events__event-score {
    font-weight: bold;
    color: #FFD700;
    min-width: 70px;
    text-align: right;
}

.page-live-streaming-popular-events__list-background-image {
    max-width: 100%;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Benefits Section */
.page-live-streaming-popular-events__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-live-streaming-popular-events__benefit-item {
    background-color: #0A244A;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-live-streaming-popular-events__benefit-item .page-live-streaming-popular-events__item-title {
    color: #FFD700;
    margin-bottom: 10px;
}

.page-live-streaming-popular-events__benefit-item p {
    color: #e0e0e0;
}

.page-live-streaming-popular-events__benefits-image {
    max-width: 100%;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsible Gaming Section */
.page-live-streaming-popular-events__responsible-gaming {
    background-color: #f4f7f6;
    padding: 80px 0;
    color: #333;
}

.page-live-streaming-popular-events__responsible-gaming .page-live-streaming-popular-events__section-title {
    color: #0A244A;
}

.page-live-streaming-popular-events__responsible-gaming p {
    max-width: 800px;
    margin: 0 auto 15px auto;
    font-size: 1.1em;
    color: #555;
}

/* Final CTA Section */
.page-live-streaming-popular-events__cta-final {
    background-color: #0A244A;
    color: #fff;
    padding: 80px 0;
}

.page-live-streaming-popular-events__cta-final .page-live-streaming-popular-events__section-title {
    color: #FFD700;
}

.page-live-streaming-popular-events__cta-final .page-live-streaming-popular-events__section-description {
    color: #e0e0e0;
}

.page-live-streaming-popular-events__cta-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .page-live-streaming-popular-events__hero-title {
        font-size: 3em;
    }
    .page-live-streaming-popular-events__hero-subtitle {
        font-size: 1.3em;
    }
    .page-live-streaming-popular-events__section-title {
        font-size: 2.2em;
    }
    .page-live-streaming-popular-events__tab-button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-live-streaming-popular-events__event-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .page-live-streaming-popular-events__event-time,
    .page-live-streaming-popular-events__event-score {
        margin-bottom: 5px;
        min-width: unset;
        text-align: left;
    }
    .page-live-streaming-popular-events__event-match {
        margin: 0 0 10px 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-live-streaming-popular-events__hero {
        padding: 80px 0;
    }
    .page-live-streaming-popular-events__hero-title {
        font-size: 2.5em;
    }
    .page-live-streaming-popular-events__hero-subtitle {
        font-size: 1.1em;
    }
    .page-live-streaming-popular-events__section {
        padding: 40px 0;
    }
    .page-live-streaming-popular-events__section-title {
        font-size: 1.8em;
    }
    .page-live-streaming-popular-events__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-live-streaming-popular-events__why-choose-grid,
    .page-live-streaming-popular-events__categories-grid,
    .page-live-streaming-popular-events__steps-grid,
    .page-live-streaming-popular-events__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-live-streaming-popular-events__hero-actions,
    .page-live-streaming-popular-events__cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .page-live-streaming-popular-events__button {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-live-streaming-popular-events__hero-title {
        font-size: 2em;
    }
    .page-live-streaming-popular-events__hero-subtitle {
        font-size: 1em;
    }
    .page-live-streaming-popular-events__section-title {
        font-size: 1.5em;
    }
    .page-live-streaming-popular-events__item-title {
        font-size: 1.3em;
    }
    .page-live-streaming-popular-events__tab-button {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    .page-live-streaming-popular-events__event-item {
        padding: 15px;
    }
    .page-live-streaming-popular-events__event-match {
        font-size: 1em;
    }
}