/* Hero Section */
.section-title {
    text-transform: none !important;
}

.section-desc {
    text-transform: none !important;
    font-size: 16px;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    padding: 20px;
}

.hero-logo {
    display: inline-block;
}

.logo-icon {
    width: 250px;
    height: 250px;
    background-color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
}

.logo-icon i {
    font-size: 120px;
    color: var(--white);
}

.hero-logo-img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    margin: 0 auto 35px;
}

.logo-title {
    font-family: 'Oswald', sans-serif;
    font-size: 100px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 20px;
    margin: 0;
    line-height: 1;
}

.logo-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--accent-red);
    letter-spacing: 15px;
    margin: 15px 0 0 0;
}

.hero-scroll {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
}

.hero-scroll span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.hero-scroll i {
    font-size: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero-scroll {
    animation: bounce 2s infinite;
}

/* Stats Section */
.stats-section {
    background-color: var(--dark);
    padding: 60px 0;
    margin-top: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background-color: var(--primary-teal);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
}

.stat-card:hover .stat-icon {
    background-color: var(--white);
    color: var(--primary-teal);
}

.stat-content {
    text-align: left;
}

.stat-content .stat-number {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-content .stat-label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

/* About Tournament Section */
.about-tournament {
    padding: 100px 0;
    background-color: var(--white);
}

.about-tournament-image {
    position: relative;
}

.about-tournament-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background-color: var(--accent-red);
    padding: 25px 35px;
    text-align: center;
}

.image-badge .badge-year {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.image-badge .badge-text {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.about-tournament-content {
    padding-left: 40px;
}

.about-tournament-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    margin-top: 15px;
}

.about-tournament-content h2 .highlight {
    color: var(--accent-red);
}

.about-tournament-content .lead {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-tournament-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--off-white);
    transition: all 0.3s ease;
    text-decoration: none !important;
    color: var(--dark);
}

.feature-box:hover {
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 32px;
    color: var(--primary-teal);
    flex-shrink: 0;
}

.feature-box h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

.feature-box p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* Hall of Fame Section */
.fame-section {
    padding: 100px 0;
    background-color: var(--off-white);
}

.fame-section .section-desc {
    color: var(--gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.fame-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.fame-card {
    background-color: var(--white);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.fame-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.fame-card {
    display: block;
    overflow: hidden;
}

.fame-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fame-card:hover img {
    transform: scale(1.1);
}

.fame-card:hover .fame-image img {
    transform: scale(1.1);
}

.fame-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fame-placeholder i {
    font-size: 80px;
    color: var(--light-gray);
}

.fame-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.fame-category {
    display: inline-block;
    padding: 5px 15px;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--primary-teal);
    color: var(--white);
}

.fame-category.legend {
    background-color: var(--gold);
    color: var(--dark);
}

.fame-info {
    padding: 25px;
}

.fame-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.fame-info p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.fame-section .fame-card .fame-info p {
    display: none;
}

.fame-section .fame-card .fame-year {
    display: none;
}

.fame-section .fame-card .fame-overlay {
    display: none;
}

.fame-year {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-teal);
    letter-spacing: 1px;
}

.section-action {
    text-align: center;
    margin-top: 50px;
}

/* News Section */
.news-section {
    padding: 100px 0;
    background-color: var(--white);
}

.news-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.social-follow {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-follow span {
    font-size: 14px;
    color: var(--gray);
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--dark);
    color: var(--white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--dark);
    color: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.news-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--light-gray);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card {
    display: flex;
    flex-direction: column;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    background-color: var(--accent-red);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content {
    padding: 25px;
}

.news-date {
    display: none;
}

.news-content h4 {
    font-size: 18px;
    margin: 10px 0 15px;
    line-height: 1.4;
}

.news-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-teal);
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--accent-red);
    gap: 12px;
}

.social-share {
    margin-top: 40px;
}

.share-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background-color: var(--dark);
    gap: 30px;
    flex-wrap: wrap;
}

.share-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.share-content i {
    font-size: 48px;
    color: var(--primary-teal);
}

.share-content h5 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 5px;
}

.share-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.share-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background-color: var(--primary-teal);
    color: var(--white);
    transform: translateY(-3px);
}

.share-btn.twitter {
    width: auto;
    padding: 0 25px;
    font-size: 14px;
    gap: 10px;
    background-color: var(--dark);
}

.share-btn.twitter:hover {
    background-color: #021233;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--off-white);
}

.gallery-section .section-desc {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

/* Sponsors Section */
.sponsors-section {
    padding: 100px 0;
    background-color: var(--white);
}

.sponsors-section .section-desc {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.sponsors-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    margin-bottom: 50px;
    scrollbar-width: thin;
    justify-content: center;
    flex-wrap: wrap;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.sponsors-grid::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .sponsors-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding-bottom: 15px;
    }
    
    .sponsors-grid::-webkit-scrollbar {
        display: block;
        height: 6px;
    }
    
    .sponsors-grid::-webkit-scrollbar-track {
        background: var(--light-gray);
        border-radius: 3px;
    }
    
    .sponsors-grid::-webkit-scrollbar-thumb {
        background: var(--primary-teal);
        border-radius: 3px;
    }
}

.sponsor-card {
    background-color: var(--off-white);
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.sponsor-card:hover {
    border-color: var(--primary-teal);
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.sponsor-card img {
    max-width: 100px;
    max-height: 50px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.sponsor-name {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    text-align: center;
}

.sponsor-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--light-gray);
}

.sponsor-cta p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--primary-teal);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.cta-icon i {
    font-size: 48px;
    color: var(--primary-teal);
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1199px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fame-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .logo-title {
        font-size: 48px;
        letter-spacing: 10px;
    }
    
    .logo-subtitle {
        font-size: 14px;
        letter-spacing: 8px;
    }
    
    .about-tournament-image {
        margin-bottom: 60px;
    }
    
    .about-tournament-content {
        padding-left: 0;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-section .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-item.large {
        grid-column: span 2;
    }
    
    .share-card {
        flex-direction: column;
        text-align: center;
    }
    
    .share-content {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .logo-title {
        font-size: 36px;
        letter-spacing: 5px;
    }
    
    .logo-subtitle {
        font-size: 12px;
        letter-spacing: 5px;
    }
    
    .logo-icon {
        width: 80px;
        height: 80px;
    }
    
    .logo-icon i {
        font-size: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-content {
        text-align: center;
    }
    
    .fame-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Hero Responsive */
@media (max-width: 992px) {
    .hero-section {
        min-height: 600px;
    }

    .logo-title {
        font-size: 50px;
        letter-spacing: 10px;
    }

    .logo-subtitle {
        font-size: 16px;
        letter-spacing: 8px;
    }

    .logo-icon,
    .hero-logo-img {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .logo-icon i {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-img {
        object-fit: cover;
        object-position: center center;
    }

    .logo-title {
        font-size: 32px;
        letter-spacing: 5px;
    }

    .logo-subtitle {
        font-size: 13px;
        letter-spacing: 4px;
    }

    .hero-logo .hero-logo-img,
    .hero-logo .logo-icon {
        width: 180px !important;
        height: 180px !important;
        margin-bottom: 20px;
    }

    .hero-logo .logo-icon i {
        font-size: 60px;
    }

    .hero-scroll {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 450px;
    }

    .logo-title {
        font-size: 26px;
        letter-spacing: 3px;
    }

    .logo-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-logo .hero-logo-img,
    .hero-logo .logo-icon {
        width: 150px !important;
        height: 150px !important;
        margin-bottom: 15px;
    }

    .hero-logo .logo-icon i {
        font-size: 50px;
    }

    .hero-scroll {
        bottom: 20px;
        font-size: 12px;
    }
}

/* Horizontal Scroll on Mobile */
@media (max-width: 768px) {
    .news-grid,
    .sponsors-grid,
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-bottom: 15px;
    }

    .news-grid::-webkit-scrollbar,
    .sponsors-grid::-webkit-scrollbar,
    .gallery-grid::-webkit-scrollbar {
        height: 6px;
    }

    .news-grid::-webkit-scrollbar-track,
    .sponsors-grid::-webkit-scrollbar-track,
    .gallery-grid::-webkit-scrollbar-track {
        background: var(--light-gray);
        border-radius: 3px;
    }

    .news-grid::-webkit-scrollbar-thumb,
    .sponsors-grid::-webkit-scrollbar-thumb,
    .gallery-grid::-webkit-scrollbar-thumb {
        background: var(--primary-teal);
        border-radius: 3px;
    }

    .news-card {
        flex: 0 0 350px;
        scroll-snap-align: start;
    }

    .news-image {
        height: 220px;
    }

    .news-content {
        padding: 20px;
    }

    .news-content h4 {
        font-size: 18px;
    }

    .gallery-item {
        flex: 0 0 320px;
        height: 220px;
    }

    .sponsors-grid {
        gap: 15px;
    }

    .sponsor-card {
        flex: 0 0 150px;
        padding: 20px 15px;
    }
}

    .news-grid,
    .sponsors-grid,
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-bottom: 20px;
        scrollbar-width: none;
    }

    .news-grid::-webkit-scrollbar,
    .sponsors-grid::-webkit-scrollbar,
    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .news-card,
    .sponsor-card,
    .gallery-item {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .sponsors-grid {
        gap: 15px;
    }

    .sponsor-card {
        flex: 0 0 150px;
        padding: 20px 15px;
    }

    .gallery-item {
        flex: 0 0 280px;
        height: 200px;
    }

    .scroll-indicator {
        display: flex !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 35px;
        height: 50px;
        background: rgba(0, 0, 0, 0.6);
        color: white;
        align-items: center;
        justify-content: center;
        z-index: 10;
        cursor: pointer;
        border-radius: 5px;
        transition: background 0.3s, opacity 0.3s;
        border: none;
    }

    .scroll-indicator:hover {
        background: rgba(0, 0, 0, 0.8);
    }

    .scroll-indicator.left {
        left: 5px;
    }

    .scroll-indicator.right {
        right: 5px;
    }

    .scroll-indicator i {
        font-size: 18px;
    }

    .scroll-hint {
        display: flex !important;
    }
}

/* Scroll Indicators */
.scroll-indicator {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.scroll-indicator:hover {
    background: rgba(0, 0, 0, 0.7);
}

.scroll-indicator.left {
    left: 5px;
}

.scroll-indicator.right {
    right: 5px;
}

.scroll-indicator i {
    font-size: 20px;
}

.scroll-hint {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--gray);
    font-size: 12px;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-gray);
    transition: all 0.3s;
}

.scroll-dot.active {
    background: var(--primary-teal);
    width: 20px;
    border-radius: 4px;
}

.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

@media (max-width: 576px) {
    .news-image {
        height: 200px;
    }
    .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .about-tournament-image img,
    .gallery-item img {
        width: 100% !important;
        height: auto !important;
        max-width: 100%;
        object-fit: contain;
    }
    
    .fame-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 10px 15px;
        -webkit-overflow-scrolling: touch;
    }
    
    .fame-card {
        flex-shrink: 0;
        width: 85vw;
        scroll-snap-align: center;
    }
    
    .fame-card img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 10px;
    }
}
