/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 1px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    backdrop-filter: blur(0px);
}

.header-container {
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: 80px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.nav-menu li a:hover {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

/* First Slide */
        
        &:nth-of-type(2) {
            top: 8px !important;
            left: -34px !important;
            opacity: 0;
            padding: 4px !important;
            animation: spew 1s 0.3s forwards, rotate 4.2s 0.35s linear infinite, final 0.2s 4s forwards, spot-2 0.7s 1.2s linear infinite !important;
        }
        
        &:nth-of-type(3) {
            top: 10px !important;
            left: -34px !important;
            opacity: 0;
            padding: 2px !important;
            animation: spew 1s 0.3s forwards, rotate 4.1s 0.45s linear infinite, final 0.2s 4s forwards, spot-3 0.7s 1.1s linear infinite !important;
        }
        
        &:nth-of-type(4) {
            top: 12px !important;
            left: -34px !important;
            opacity: 0;
            padding: 5px !important;
            animation: spew 1s 0.3s forwards, rotate 4.3s 0.55s linear infinite, final 0.2s 4s forwards, spot-4 0.7s 1.3s linear infinite !important;
        }
        
        &:nth-of-type(5) {
            top: 14px !important;
            left: -34px !important;
            opacity: 0;
            padding: 3px !important;
            animation: spew 1s 0.3s forwards, rotate 4s 0.65s linear infinite, final 0.2s 4s forwards, spot-5 0.7s 1.4s linear infinite !important;
        }
    }
}

.tick {
    position: absolute;
    left: -40px;
    right: 0;
    transform: scale(0);
    margin: auto;
    font-size: 16px;
}

.button_inner {
    
    border-radius: 50px;
    position: relative;
    width: 80px;
    height: 30px;
    /* box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.04); */
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.5)
    color: #2a2a2a;
    text-align: center;
    transition: all 0.3s, box-shadow 0.2s, transform 0.2s 0.2s;
    background: white;
    backdrop-filter: blur(10px);
    
    span.t {
        position: relative;
        top: 5px;
        opacity: 1;
        left: 0px;
        transition: left 0.4s 0.1s;
        font-size: 11px;
    }
    
    i.l {
        position: absolute;
        left: -15px;
        top: 15px;
        color: #ff6b6b;
        font-size: 18px;
        opacity: 0;
        transition: left 0.3s 0s, top 0.3s 0s, opacity 0.3s 0s;
    }
    
    &:hover {
        span.t {
            left: 0px;
            transition: left 0.4s;
        }
        
        i.l {
            top: 6px;
            opacity: 1;
            transition: left 0.3s 0s, top 0.3s 0.1s, opacity 0.3s 0.1s;
        }
        
        .button_spots {
            &:nth-of-type(1) {
                animation: spot-1 0.7s 0.4s linear infinite;
            }
            &:nth-of-type(2) {
                animation: spot-2 0.7s 0.6s linear infinite;
            }
            &:nth-of-type(3) {
                animation: spot-3 0.7s 0.5s linear infinite;
            }
            &:nth-of-type(4) {
                animation: spot-4 0.7s 0.7s linear infinite;
            }
            &:nth-of-type(5) {
                animation: spot-5 0.7s 0.8s linear infinite;
            }
        }
    }
}

.b_l_quad .button_spots {
    &:nth-child(1) { padding: 3px; left: -25px; top: 25px; }
    &:nth-child(2) { padding: 4px; left: -13px; top: 25px; }
    &:nth-child(3) { padding: 2px; left: -1px; top: 25px; }
    &:nth-child(4) { padding: 5px; left: 11px; top: 25px; }
    &:nth-child(5) { padding: 3px; left: 23px; top: 25px; }
    &:nth-child(6) { padding: 4px; left: 35px; top: 25px; }
    &:nth-child(7) { padding: 2px; left: 47px; top: 25px; }
    &:nth-child(8) { padding: 5px; left: 59px; top: 25px; }
    &:nth-child(9) { padding: 3px; left: 71px; top: 25px; }
    &:nth-child(10) { padding: 4px; left: 83px; top: 25px; }
    &:nth-child(11) { padding: 2px; left: -25px; top: -12px; }
    &:nth-child(12) { padding: 5px; left: -13px; top: -12px; }
    &:nth-child(13) { padding: 3px; left: -1px; top: -12px; }
    &:nth-child(14) { padding: 4px; left: 11px; top: -12px; }
    &:nth-child(15) { padding: 2px; left: 23px; top: -12px; }
    &:nth-child(16) { padding: 5px; left: 35px; top: -12px; }
    &:nth-child(17) { padding: 3px; left: 47px; top: -12px; }
    &:nth-child(18) { padding: 4px; left: 59px; top: -12px; }
    &:nth-child(19) { padding: 2px; left: 71px; top: -12px; }
    &:nth-child(20) { padding: 5px; left: 83px; top: -12px; }
}

.button_spots {
    position: absolute;
    border-radius: 100px;
    background: #ff6b6b;
    opacity: 0;
    animation: opacity 1s;
    
    &:nth-of-type(1) {
        transform-origin: 85px 15px;
        background: hsla(350, 57%, 65%, 1);
        box-shadow: 0px 0px 10px rgba(255, 107, 107, 0.3);
        transition: all 1.2s;
    }
    
    &:nth-of-type(2) {
        transform-origin: 80px 18px;
        background: hsla(355, 60%, 70%, 1);
        box-shadow: 0px 0px 10px rgba(255, 107, 107, 0.3);
        transition: all 1.1s;
    }
    
    &:nth-of-type(3) {
        transform-origin: 87px 12px;
        background: hsla(345, 55%, 68%, 1);
        box-shadow: 0px 0px 10px rgba(255, 107, 107, 0.3);
        transition: all 1.3s;
    }
    
    &:nth-of-type(4) {
        transform-origin: 82px 20px;
        background: hsla(358, 62%, 72%, 1);
        box-shadow: 0px 0px 10px rgba(255, 107, 107, 0.3);
        transition: all 1s;
    }
    
    &:nth-of-type(5) {
        transform-origin: 88px 16px;
        background: hsla(352, 58%, 66%, 1);
        box-shadow: 0px 0px 10px rgba(255, 107, 107, 0.3);
        transition: all 1.4s;
    }
}

/* Animations */
@keyframes spot-1 {
    from { opacity: 0; }
    to { transform: translateY(15px) translateX(-18px); opacity: 0.6; }
}

@keyframes spot-2 {
    from { opacity: 0; }
    to { transform: translateY(15px) translateX(-16px); opacity: 0.6; }
}

@keyframes spot-3 {
    from { opacity: 0; }
    to { transform: translateY(15px) translateX(-14px); opacity: 0.6; }
}

@keyframes spot-4 {
    from { opacity: 0; }
    to { transform: translateY(15px) translateX(-12px); opacity: 0.6; }
}

@keyframes spot-5 {
    from { opacity: 0; }
    to { transform: translateY(15px) translateX(-10px); opacity: 0.6; }
}

@keyframes opacity {
    from { }
    to { opacity: 0; }
}

@keyframes rotate {
    from { opacity: 0.8; }
    to { transform: rotate(360deg); opacity: 0.8; }
}

@keyframes down {
    from { left: 5px; }
    to { left: 25px; }
}

@keyframes spew {
    from { opacity: 0; }
    to { opacity: 0.8; }
}

/* First Slide */
.hero-slide {
    width: 100%;
    height: 100vh;
    background: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
    opacity: 1;
}

.hero-background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(128,128,128,0.6), rgba(255,255,255,0.3));
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: absolute;
    text-align: center;
    color: white;
    width: 100%;
    padding: 0 0px;
    top: 0px;

    z-index: 3;
    opacity: .4;
}

.hero-content h1 {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(6rem, 15vw, 13rem);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: clamp(2px, 0.5vw, 8px);
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
    padding: 40px 20px;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    word-wrap: break-word;
}

.hero-content p {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 5px;
    backdrop-filter: blur(3px);
}

/* Bottom Section */
.hero-bottom {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    color: white;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    backdrop-filter: blur(1px);
}

.hero-bottom-text {
    flex: 1;
}

.hero-bottom-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-bottom-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    background: none;
    padding: 0;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-shadow: none;
    display: inline-block;
}

.hero-btn-primary {
    background: #e60023;
    color: white;
    backdrop-filter: blur(10px);
}

.hero-btn-primary:hover {
    background: rgba(255,255,255,1);
    color: #e60023;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.hero-btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,1);
    transform: translateY(-2px);
}

/* Second Section - Tournament Winners */
.tournament-section {
    width: 100%;
    height: 100vh;
    max-height: 900px;
    background-color: #eaeaea;
    color: #2a2a2a;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 80px 60px;
    overflow: hidden;
}

.tournament-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    z-index: 2;
    position: relative;
}

.tournament-top-text {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: clamp(3rem, 8vw, 8rem);
    text-transform: uppercase;
    letter-spacing: clamp(2px, 1vw, 5px);
    text-align: center;
    margin: 0;
    z-index: 1;
    filter: blur(8px);
    transition: filter 0.3s ease-out;
}

.tournament-description {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.tournament-description h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tournament-description h4 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 600;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 20px;
}

.tournament-description p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 500;
    color: #2a2a2a;
    line-height: 1.6;
    margin: 0;
}

.tournament-image {
    flex: 0 0 auto;
    height: auto;
    max-width: 50%;
    z-index: 1;
    transition: transform 0.3s ease;
    width: 50%;
    margin-top: 0px;
}

.tournament-image:hover {
    transform: scale(1.05);
}

.tournament-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.tournament-bottom-text {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: clamp(2rem, 6vw, 6rem);
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.8vw, 8px);
    text-align: center;
    margin: 0;
    z-index: 2;
    filter: blur(6px);
    transition: filter 0.3s ease-out;
}

/* Season Highlights Section */
.highlights-section {
    width: 100%;
    min-height: 100vh;
    background-color: #fff2f2;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.highlights-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.highlights-content {
    text-align: center;
}

.highlights-main-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 60px;
    position: relative;
}

.highlights-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #e60023, #b92b41)
    border-radius: 2px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e60023;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.highlight-icon-large {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.highlight-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.highlight-description {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

.highlights-conclusion {
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2a2a2a;
    font-style: italic;
    text-align: center;
    margin: 0;
    padding: 30px 0;
    border-top: 2px solid #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Highlights Section */
@media (max-width: 968px) {
    .highlights-container {
        padding: 0 30px;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .highlight-card {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .highlights-section {
        padding: 80px 0;
    }
    
    .highlights-container {
        padding: 0 20px;
    }
    
    .highlights-main-title {
        margin-bottom: 40px;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .highlight-icon-large {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .highlights-conclusion {
        font-size: 1.1rem;
        padding: 20px 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    section.gallery-section {
        padding: 10px 5px 30px;
    }
    .header-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu li a {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
        letter-spacing: 4px;
        padding: 30px 0;
    }
    
    .hero-content p {
        font-size: 1.5rem;
        padding: 15px;
    }
    
    .logo img {
        height: 60px;
        width: 60px;
    }

    .hero-bottom {
        flex-direction: column;
        gap: 30px;
        padding: 0 30px;
        text-align: center;
        bottom: 40px;
    }

    .hero-bottom-text {
        max-width: 100%;
    }

    .hero-bottom-text h3 {
        font-size: 1.5rem;
    }

    .hero-bottom-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }

    .tournament-section {
        padding: 60px 30px;
    }

    .tournament-image {
        width: 400px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-menu li a {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
        padding: 20px 0;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        padding: 10px;
    }
    
    .logo img {
        height: 50px;
        width: 50px;
    }

    .hero-bottom {
        padding: 0 20px;
        bottom: 30px;
    }

    .hero-bottom-text h3 {
        font-size: 1.3rem;
    }

    .hero-bottom-text p {
        font-size: 0.9rem;
    }

    .tournament-section {
        padding: 40px 20px;
    }

    .tournament-image {
        width: 300px;
        max-width: 95%;
    }
}

/* Section 3 - Gallery Slider Styles */
.gallery-section {
    width: 100%;
    min-height: 100vh;
    background-color: #2a2a2a;
    color: #eaeaea;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 0 60px 0;
}

.gallery-title {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: clamp(2.5rem, 6vw, 6rem);
    text-transform: uppercase;
    letter-spacing: clamp(2px, 1vw, 10px);
    text-align: center;
    margin-bottom: 0px;
    padding: 40px;
    color: #eaeaea;
}

.gallery-subtitle {
    display: none;
}

/* Custom Slider Styles */
.slider-container {
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.main-slider {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slides-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Navigation Arrows */
.nav-btn {
    display: none;
}

/* Thumbnail Container */
.thumbnail-container {
    position: relative;
    width: 100%;
    background: #2a2a2a;
    padding: 0px 0;
    z-index: 5;
}

.thumbnail-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 60px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch; /* iOS momentum scrolling */
    scroll-snap-type: x proximity; /* Optional: snap to thumbnails */
}

.thumbnail-wrapper:active {
    cursor: grabbing;
    scroll-behavior: auto; /* Disable smooth scrolling during active drag */
}

.thumbnail-wrapper::-webkit-scrollbar {
    display: none;
}

.thumbnails-track {
    display: flex;
    gap: 0px;
    align-items: center;
}

.thumbnail {
    flex-shrink: 0;
    width: calc((100vw - 80px) / 4);
    height: calc((100vw - 80px) / 4 * 0.6);
    min-width: 150px;
    min-height: 90px;
    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.thumbnail.active {
    opacity: 1;
    border-color:#e60023;
    transform: scale(1);
    padding: 10px;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Thumbnail Navigation Arrows */
.thumb-nav-btn {
    display: none;
}
}

/* Jssor slider loading skin spin css */
.jssorl-009-spin img {
    animation-name: jssorl-009-spin;
    animation-duration: 1.6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes jssorl-009-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* jssor slider thumbnail navigator skin css */
.jssort11 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 240px;
    height: 480px;
    background: rgba(0,0,0,0.8);
    overflow: hidden;
}

.jssort11 .p {
    position: absolute;
    top: 0;
    left: 0;
    width: 99px;
    height: 66px;
    border: #333 1px solid;
    box-sizing: content-box;
    background: #222;
    cursor: pointer;
}

.jssort11 .p:hover {
    background: #444;
    border-color: #666;
}

.jssort11 .p.pav, .jssort11 .p.pdn {
    background: #555;
    border-color: #888;
}

.jssort11 .i {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 99px;
    height: 66px;
}

/* jssor slider arrow skin css */
.jssora11l, .jssora11r {
    display: block;
    position: absolute;
    width: 37px;
    height: 37px;
    cursor: pointer;
    background: rgba(0,0,0,0.8);
    border-radius: 50%;
    overflow: hidden;
    color: white;
    font-size: 20px;
    line-height: 37px;
    text-align: center;
    transition: all 0.3s ease;
}

.jssora11l {
    left: 8px;
}

.jssora11r {
    right: 8px;
}

.jssora11l:hover, .jssora11r:hover {
    background: rgba(0,0,0,0.9);
    transform: scale(1.1);
}

.jssora11l:before {
    content: "❮";
}

.jssora11r:before {
    content: "❯";
}

.jssora11l.jssora11ldn, .jssora11r.jssora11rdn {
    opacity: 0.5;
    cursor: default;
}

/* Responsive for gallery section */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 30px;
    }
    
    .gallery-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .main-slider {
        height: 50vh;
        min-height: 300px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .thumbnail {
        width: 60px;
        height: 45px;
    }

    .thumb-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .thumbnail-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 20px;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
    }

    .main-slider {
        height: 40vh;
        min-height: 250px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .thumbnail {
        width: 50px;
        height: 37px;
    }

    .thumbnail-wrapper {
        padding: 0 30px;
    }

    .thumb-nav-btn {
        display: none; /* Hide thumbnail arrows on very small screens */
    }
}

/* Partners Section */
.partners-section {
    width: 100%;
    min-height: 100vh;
    background: #eaeaea
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.partners-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.partners-header {
    text-align: center;
    margin-bottom: 80px;
    z-index: 2;
    pointer-events: none;
}

.partners-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #2a2a2a;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    pointer-events: none;
}
.card__grid-effect-tile:hover::before {
    transition: all .2s;
}
.partner-logo:hover img{
    filter: none !important;
    transform: scale(1.1);
}
.partners-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: #2a2a2a;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    pointer-events: none;
}
.card__grid-effect-tile:hover::before {
    transition: all .4s !important;
}
.card__grid-effect-tile:before {
    transition: all 2s !important;
}
.partners-logos {
    box-shadow: 0px 0px 11px -7px black inset;
}
.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 1000px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease;
    pointer-events: auto;
}

.partner-logo:hover {
    transform: scale(1.1);
}

.partner-logo img {
    height: 50px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
    pointer-events: none;
}

.partner-logo:hover img {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.card__grid-effect {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
}

.card__grid-effect-tile {
    position: relative;
}

.card__grid-effect-tile::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0.3rem;
    width: 0.3rem;
    border-radius: 50%;
    background: rgba(42, 42, 42, 0.3);
    transition: 500ms linear all;
    box-shadow: 0 0 0 rgba(42, 42, 42, 0.3), 3rem 0 0 -0.3rem rgba(42, 42, 42, 0.3), -3rem 0 0 -0.3rem rgba(42, 42, 42, 0.3), 0 -3rem 0 -0.3rem rgba(42, 42, 42, 0.3), 0 3rem 0 -0.3rem rgba(42, 42, 42, 0.3), 
                3rem 3rem 0 -0.45rem rgba(42, 42, 42, 0.3), 3rem -3rem 0 -0.45rem rgba(42, 42, 42, 0.3), -3rem 3rem 0 -0.45rem rgba(42, 42, 42, 0.3), -3rem -3rem 0 -0.45rem rgba(42, 42, 42, 0.3),
                6rem 0 0 -0.6rem rgba(42, 42, 42, 0.3), -6rem 0 0 -0.6rem rgba(42, 42, 42, 0.3), 0 -6rem 0 -0.6rem rgba(42, 42, 42, 0.3), 0 6rem 0 -0.6rem rgba(42, 42, 42, 0.3),
                6rem 3rem 0 -0.9rem rgba(42, 42, 42, 0.3), 6rem -3rem 0 -0.9rem rgba(42, 42, 42, 0.3), -6rem 3rem 0 -0.9rem rgba(42, 42, 42, 0.3), -6rem -3rem 0 -0.9rem rgba(42, 42, 42, 0.3),
                3rem 6rem 0 -0.9rem rgba(42, 42, 42, 0.3), 3rem -6rem 0 -0.9rem rgba(42, 42, 42, 0.3), -3rem 6rem 0 -0.9rem rgba(42, 42, 42, 0.3), -3rem -6rem 0 -0.9rem rgba(42, 42, 42, 0.3),
                9rem 0 0 -0.9rem rgba(42, 42, 42, 0.3), -9rem 0 0 -0.9rem rgba(42, 42, 42, 0.3), 0 -9rem 0 -0.9rem rgba(42, 42, 42, 0.3), 0 9rem 0 -0.9rem rgba(42, 42, 42, 0.3),
                9rem 3rem 0 -1.35rem rgba(42, 42, 42, 0.3), 9rem -3rem 0 -1.35rem rgba(42, 42, 42, 0.3), -9rem 3rem 0 -1.35rem rgba(42, 42, 42, 0.3), -9rem -3rem 0 -1.35rem rgba(42, 42, 42, 0.3),
                3rem 9rem 0 -1.35rem rgba(42, 42, 42, 0.3), 3rem -9rem 0 -1.35rem rgba(42, 42, 42, 0.3), -3rem 9rem 0 -1.35rem rgba(42, 42, 42, 0.3), -3rem -9rem 0 -1.35rem rgba(42, 42, 42, 0.3),
                9rem 6rem 0 -1.35rem rgba(42, 42, 42, 0.3), 9rem -6rem 0 -1.35rem rgba(42, 42, 42, 0.3), -9rem 6rem 0 -1.35rem rgba(42, 42, 42, 0.3), -9rem -6rem 0 -1.35rem rgba(42, 42, 42, 0.3),
                6rem 9rem 0 -1.35rem rgba(42, 42, 42, 0.3), 6rem -9rem 0 -1.35rem rgba(42, 42, 42, 0.3), -6rem 9rem 0 -1.35rem rgba(42, 42, 42, 0.3), -6rem -9rem 0 -1.35rem rgba(42, 42, 42, 0.3),
                12rem 0 0 -1.2rem rgba(42, 42, 42, 0.3), -12rem 0 0 -1.2rem rgba(42, 42, 42, 0.3), 0 -12rem 0 -1.2rem rgba(42, 42, 42, 0.3), 0 12rem 0 -1.2rem rgba(42, 42, 42, 0.3),
                12rem 3rem 0 -1.8rem rgba(42, 42, 42, 0.3), 12rem -3rem 0 -1.8rem rgba(42, 42, 42, 0.3), -12rem 3rem 0 -1.8rem rgba(42, 42, 42, 0.3), -12rem -3rem 0 -1.8rem rgba(42, 42, 42, 0.3),
                3rem 12rem 0 -1.8rem rgba(42, 42, 42, 0.3), 3rem -12rem 0 -1.8rem rgba(42, 42, 42, 0.3), -3rem 12rem 0 -1.8rem rgba(42, 42, 42, 0.3), -3rem -12rem 0 -1.8rem rgba(42, 42, 42, 0.3),
                12rem 6rem 0 -1.8rem rgba(42, 42, 42, 0.3), 12rem -6rem 0 -1.8rem rgba(42, 42, 42, 0.3), -12rem 6rem 0 -1.8rem rgba(42, 42, 42, 0.3), -12rem -6rem 0 -1.8rem rgba(42, 42, 42, 0.3),
                6rem 12rem 0 -1.8rem rgba(42, 42, 42, 0.3), 6rem -12rem 0 -1.8rem rgba(42, 42, 42, 0.3), -6rem 12rem 0 -1.8rem rgba(42, 42, 42, 0.3), -6rem -12rem 0 -1.8rem rgba(42, 42, 42, 0.3),
                12rem 9rem 0 -1.8rem rgba(42, 42, 42, 0.3), 12rem -9rem 0 -1.8rem rgba(42, 42, 42, 0.3), -12rem 9rem 0 -1.8rem rgba(42, 42, 42, 0.3), -12rem -9rem 0 -1.8rem rgba(42, 42, 42, 0.3),
                9rem 12rem 0 -1.8rem rgba(42, 42, 42, 0.3), 9rem -12rem 0 -1.8rem rgba(42, 42, 42, 0.3), -9rem 12rem 0 -1.8rem rgba(42, 42, 42, 0.3), -9rem -12rem 0 -1.8rem rgba(42, 42, 42, 0.3);
}

.card__grid-effect-tile:hover::before {
    height: 3rem;
    width: 3rem;
    background: rgba(42, 42, 42, 0.8);
    transition: 70ms linear all;
}

/* Responsive design for partners */
@media (max-width: 768px) {
    .partners-logos {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 25px;
        padding: 30px;
    }
    
    .partner-logo img {
        height: 40px;
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }
    
    .partner-logo img {
        height: 35px;
        max-width: 80px;
    }
    
    .partners-section {
        padding: 40px 15px;
    }
}

/* Squad Section */
.squad-section {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(rgba(10, 10, 10, 0.1), rgba(26, 26, 26, 0.1)), url('../images/players background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    position: relative;
    padding: 80px 0 120px 0;
    overflow: hidden;
}

.squad-title {
    text-align: center;
    font-family: "Anton", sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 8vw, 6rem);
    text-transform: uppercase;
    letter-spacing: clamp(2px, 1.5vw, 15px);
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    margin-bottom: 60px;
}

.squad-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.squad-slides-container {
    overflow: hidden;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 60px;
}

.squad-slides {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 300%;
    min-height: 100%;
}

.squad-slide {
    flex-shrink: 0;
    width: 33.33%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0.5;
    transform: scale(0.75);
    transform-origin: top center;
    transition: all 0.6s ease;
    pointer-events: auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.squad-slide.active {
    opacity: 1;
    transform: scale(1.1);
    transform-origin: top center;
    z-index: 10;
}

.squad-slide.prev,
.squad-slide.next {
    opacity: 0.7;
    transform: scale(0.85);
    transform-origin: top center;
}

.squad-player-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.squad-slide.active .squad-player-card {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.squad-player-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-10px);
}

.squad-player-image {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
    position: relative;
}

.squad-slide.active .squad-player-image {
    /* Height determined by image aspect ratio */
}

.squad-player-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.squad-player-card:hover .squad-player-image img {
    transform: scale(1.1);
}

.squad-player-info {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.squad-player-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    margin: 0;
}

/* Navigation Arrows */
.squad-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #e60023;
    border-radius: 50%;
    color: #e60023;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
    opacity: .3;
}

.squad-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.squad-arrow-left {
    left: 40px;
}

.squad-arrow-right {
    right: 40px;
}

/* Responsive for squad section */
@media (max-width: 1024px) {
    .squad-slider {
        padding: 0 40px;
    }
    
    .squad-player-card {
        height: 350px;
    }
    
    .squad-player-image {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .squad-title {
        margin-bottom: 40px;
    }
    
    .squad-slider {
        padding: 0 20px;
    }
    
    .squad-slides {
        gap: 20px;
    }
    
    .squad-player-card {
        height: 320px;
    }
    
    .squad-player-image {
        height: 220px;
    }
    
    .squad-player-name {
        font-size: 1.5rem;
    }
    
    .squad-arrow {
        width: 50px;
        height: 50px;
    }
    
    .squad-arrow-left {
        left: 10px;
    }
    
    .squad-arrow-right {
        right: 10px;
    }
}

/* Coaching Team Section */
.coaching-section {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #fff;
    position: relative;
    padding: 80px 0;
}

.coaching-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.coaching-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 80vh;
}

.coaching-text {
    padding-right: 40px;
}

.coaching-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #e60023;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.coaching-title {
    font-family: "Anton", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coaching-description {
    margin-bottom: 50px;
}

.coaching-description p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.coaching-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid #e60023;
    color: #e60023;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.coaching-cta:hover {
    background: #e60023;
    color: white;
    transform: translateX(5px);
}

.coaching-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.coaching-cta:hover .coaching-arrow {
    transform: translateX(5px);
}

.coaching-slider {
    position: relative;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
}

.coaching-slides-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.coaching-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.coaching-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.squad-slide:not(.active) {
    backdrop-filter: blur(0px);
}
.coaching-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.coaching-name-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.coaching-coach-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    color: #e60023;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.coaching-coach-title {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin: 5px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coaching-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.coaching-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.coaching-dot.active {
    background: #e60023;
    border-color: #e60023;
    transform: scale(1.3);
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.5);
}

.coaching-dot:hover {
    background: #e60023;
    border-color: #e60023;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .coaching-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .coaching-text {
        padding-right: 0;
        order: 2;
    }
    
    .coaching-slider {
        order: 1;
        height: 500px;
    }
    
    .coaching-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .coaching-section {
        padding: 60px 0;
    }
    
    .coaching-slider {
        height: 400px;
    }
    
    .coaching-name-overlay {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }
    
    .coaching-coach-name {
        font-size: 1.3rem;
    }
    
    .coaching-description p {
        font-size: 16px;
    }
    
    .coaching-content {
        gap: 30px;
    }
}

/* ===== Social Carousel Section ===== */

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0px) rotate(0deg) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(-12px) rotate(0deg) scale(1);
    }
}

/* ===== Section Layout ===== */
.social-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../images/slide 1 - players - 1.2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

/* ===== Header ===== */
.header {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out forwards;
    position: relative;
    z-index: 10;
}

.title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===== Carousel Container ===== */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 80rem;
    height: 400px;
    perspective: 1000px;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-track {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

/* ===== Social Card ===== */
.social-card {
    position: absolute;
    left: 50%;
    cursor: pointer;
    transform-style: preserve-3d;
    will-change: transform, z-index;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-card.active:not(.hovered):not(.dragging) {
    animation: gentleFloat 3s ease-in-out infinite;
}

.card-inner {
    width: 200px;
    height: 280px;
    border-radius: 1.25rem;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.social-card.hovered .card-inner {
    box-shadow: 0 0 60px 10px rgba(255, 165, 0, 0.4), 0 35px 60px -15px rgba(0, 0, 0, 0.3);
    outline: 2px solid rgba(255, 165, 0, 0.3);
    outline-offset: 0;
}

.card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* ===== Navigation Dots ===== */
.nav-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.nav-dot.active {
    width: 24px;
    background-color: #ffffff;
}

/* ===== Footer Text ===== */
.follow-text {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    margin-top: 2rem;
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== Social Links ===== */
.social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 2rem;
    margin-top: 1rem;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

.social-link {
    position: relative;
    font-family: 'Anton', sans-serif;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.social-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ===== Swipe Hint ===== */
.swipe-hint {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-top: 1.5rem;
    display: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== Responsive Styles ===== */
@media (min-width: 768px) {
    section.gallery-section {
        padding: 10px 20px 50px;
    }
    .carousel-container {
        height: 500px;
    }
    
    .card-inner {
        width: 260px;
        height: 360px;
    }
    
    .header {
        margin-bottom: 3rem;
    }
    
    .nav-dots {
        margin-top: 2rem;
    }
    
    .follow-text {
        margin-top: 3rem;
    }
}

@media (min-width: 1024px) {
    .carousel-container {
        height: 550px;
    }
    
    .card-inner {
        width: 300px;
        height: 420px;
    }
    section.gallery-section {
        padding: 10px 40px 50px;
    }
}

@media (max-width: 767px) {
    .swipe-hint {
        display: block;
    }
}

/* Achievements Content within Season Highlights */
.achievements-content {
    margin-top: 80px;
    text-align: center;
}

.achievements-main-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    position: relative;
}

.achievements-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 60px;
}

.achievements-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #e60023, #ff1744);
    border-radius: 2px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e60023, #ff1744);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.achievement-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.achievement-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.achievement-description {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2a2a2a;
    line-height: 1.6;
    margin: 0;
}

.achievement-description.mvp {
    color: #e60023;
    font-weight: 700;
}

.exclusive-banner {
    background: linear-gradient(135deg, #e60023 0%, #b92b41 100%);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(230, 0, 35, 0.3);
    position: relative;
    overflow: hidden;
}

.exclusive-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.1) 10px,
        rgba(255,255,255,0.1) 20px
    );
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.exclusive-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.exclusive-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.exclusive-text {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin: 0;
}

/* Responsive Design for Achievements within Highlights */
@media (max-width: 968px) {
    .achievements-content {
        margin-top: 60px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .achievement-card {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .achievements-content {
        margin-top: 40px;
    }
    
    .achievements-main-title {
        margin-bottom: 15px;
    }
    
    .achievements-subtitle {
        margin-bottom: 40px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .achievement-icon {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .achievement-title {
        font-size: 1.3rem;
    }
    
    .achievement-description {
        font-size: 0.9rem;
    }
    
    .exclusive-banner {
        padding: 25px;
        margin-top: 30px;
    }
    
    .exclusive-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    @media (max-width: 767px) {
    
.card-inner iframe {
    max-width: 100% !important;
    min-width: auto !important;
    margin-top: -40px !important;
}

    .swipe-hint {
        display: block;
    }
    .tournament-image {
    top: 42%;
}
}
}

@media (max-width: 480px) {
    .achievements-content {
        margin-top: 30px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievement-card {
        padding: 25px 20px;
    }
    
    .exclusive-banner {
        padding: 20px;
    }
}