body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #fff;
    color: #333;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

/* Stats Section */
.stats-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    flex: 1;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    height: 160px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.stat-text {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.details-link {
    display: block;
    text-align: center;
    margin-top: 40px;
    color: #F98820;
    text-decoration: underline;
    font-weight: 500;
}

/* Performers Section */
.performers-section {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.performers-slider {
    padding: 0 50px; /* Space for navigation buttons */
}

.performer-card {
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
}

.performer-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    display: block;
    max-width: 100%;
    aspect-ratio: 1/1;
}

.performer-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.performer-stats {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.performer-link {
    font-size: 14px;
    color: #F98820;
    text-decoration: none;
    font-weight: 500;
}

.performer-stats .star {
    color: #FFD600;
    font-size: 18px;
    vertical-align: middle;
    margin-right: 2px;
}

.swiper-button-prev,
.swiper-button-next {
    color: #F98820;
}

/* Pagination bullets for performers-section */
.performers-section .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    position: static;
    gap: 8px;
    z-index: 2;
}
.performers-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #e0e0e0;
    border-radius: 50%;
    opacity: 1;
    transition: background 0.3s;
    margin: 0 4px;
}
.performers-section .swiper-pagination-bullet-active {
    background: #F98820;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .stats-section {
        padding: 32px 0;
    }
    .stats-container {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .stat-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        max-width: 100%;
        padding: 0 12px;
    }
    .stat-icon {
        height: 144px;
        width: 144px;
        aspect-ratio: 1/1;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .stat-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }
    .stat-text {
        font-size: 15px;
        text-align: left;
        word-break: break-word;
        white-space: normal;
        margin: 0;
    }

    .performers-slider {
        padding: 0 15px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    .performers-section .section-title {
        text-align: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
        display: block;
    }

    .performers-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100vw !important;
        box-sizing: border-box;
    }

    .performers-section .swiper-button-prev,
    .performers-section .swiper-button-next {
        display: none !important;
    }

    .performers-section .swiper-pagination {
        margin-top: 12px;
        gap: 6px;
    }
    .performers-section .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
} 