 @import url('https://fonts.cdnfonts.com/css/valorant');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background: #1c2526;
            color: #ffffff;
            overflow-x: hidden;
        }

        .glassmorphism {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 71, 87, 0.3);
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            transition: all 0.3s ease;
        }

        .glassmorphism:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(255, 71, 87, 0.3);
        }

        .neon-text {
            text-shadow: 0 0 8px rgba(255, 71, 87, 0.8), 0 0 16px rgba(255, 71, 87, 0.4);
        }

        .neon-button {
            background: linear-gradient(90deg, #ff4757, #6d28d9);
            padding: 12px 24px;
            border-radius: 8px;
            color: #ffffff;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .neon-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(255, 71, 87, 0.6);
        }

        .section-title {
            font-family: 'Valorant', sans-serif;
            font-size: 2.5rem;
            background: linear-gradient(to right, #ff4757, #6d28d9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 20px rgba(255, 71, 87, 0.4);
        }

        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: #1c2526;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .loader .spike {
            width: 15px;
            height: 15px;
            background: #ff4757;
            border-radius: 50%;
            margin: 0 8px;
            animation: spike-pulse 1.5s ease-in-out infinite;
        }

        .loader .spike:nth-child(2) {
            animation-delay: 0.2s;
        }

        .loader .spike:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes spike-pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.5);
                background: #6d28d9;
            }
        }

        .content {
            display: none;
        }

        body.loaded .content {
            display: block;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .neon-button {
                padding: 10px 20px;
            }

            /* Remove shadow and border for hero image in responsive view */
            .hero-image-container {
                background: none !important;
                backdrop-filter: none !important;
                border: none !important;
                box-shadow: none !important;
            }
        }

        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 50;
            transition: background-color 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(28, 37, 38, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background: linear-gradient(90deg, #ff4757, #6d28d9);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
        }

        .dropdown-toggle i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .dropdown-toggle.active i {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .group:hover .dropdown-menu {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 100vw;
            background: rgba(28, 37, 38, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
            z-index: 49;
            padding: 20px;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu ul {
            text-align: left;
        }

        .mobile-dropdown {
            display: none;
            opacity: 0;
            height: 0;
            overflow: hidden;
            transition: opacity 0.3s ease, height 0.3s ease;
        }

        .mobile-dropdown.active {
            display: block;
            opacity: 1;
            height: auto;
        }

        .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            color: #ffffff;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-menu:hover {
            color: #ff4757;
        }

        .hamburger span {
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .navbar .container {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }

        @media (max-width: 640px) {
            .navbar .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .neon-button {
                padding: 8px 16px;
                font-size: 0.875rem;
            }
        }


      
/*-NAV BAR END--*/


/*-GANE TITLES--*/

 .steam-card {
    perspective: 1000px;
    transition: transform 0.3s ease;
}

.steam-card:hover {
    transform: translateY(-6px);
}

.card-inner {
    background: linear-gradient(135deg, #2a2f3b 0%, #1c2526 100%);
    
    border-radius: 10px;
    overflow: hidden;
    
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    padding: 10px;
    height: 70px; /* Slightly reduced for better fit */
}

.card-inner h3 {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px; /* Slightly smaller for compact look */
    text-shadow: 0 0 4px rgba(255, 71, 87, 0.4);
}

.rounded-full {
    border-radius: 50%;
}

@media (min-width: 640px) {
    .card-inner {
        padding: 12px;
        height: 80px;
    }

    .card-inner h3 {
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .card-inner {
        padding: 8px;
        height: 60px;
    }

    .card-inner h3 {
        font-size: 10px;
    }

    .steam-card {
        padding: 2px;
    }
}


/*-GANE TITLES--*/


/*-GANE MAIN PAGE TOURNAMENTS CARDS--*/

    .glassmorphism.card-tournament {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 450px; /* Adjusted for larger image */
    }

    .aspect-square {
        aspect-ratio: 1 / 1; /* Maintains square aspect ratio for Instagram-style images */
    }

    @media (max-width: 768px) {
        .glassmorphism.card-tournament {
            min-height: auto; /* Allow natural height on mobile */
        }

        table {
            font-size: 0.75rem; /* Smaller text on mobile */
        }

        .neon-button {
            padding: 8px 16px; /* Slightly smaller button on mobile */
            font-size: 0.875rem;
        }
    }


     .animate-pulse-slow {
        animation: pulse-slow 3s ease-in-out infinite;
    }

    @keyframes pulse-slow {
        0%, 100% {
            box-shadow: 0 0 15px rgba(255, 71, 87, 0.3);
        }
        50% {
            box-shadow: 0 0 30px rgba(255, 71, 87, 0.5);
        }
    }

    
    @media (max-width: 768px) {
        .glassmorphism {
            padding: 8px;
        }

        h3.neon-text-ot {
            font-size: 2rem;
        }

        p.text-gray-300 {
            font-size: 1rem;
        }

        .neon-button {
            padding: 8px 16px;
            font-size: 0.875rem;
        }
    }

    @media (max-width: 768px) {
        .glassmorphism {
            padding: 4px;
        }

        h4.text-2xl {
            font-size: 1.5rem;
        }

        .text-sm {
            font-size: 0.75rem;
        }

        .neon-button {
            padding: 8px 16px;
            font-size: 0.875rem;
        }

        .max-w-md {
            max-width: 100%;
        }
    }

    .max-w-lg 
    {
            max-width: 40rem !important;
    }

/*-GANE MAIN PAGE TOURNAMENTS CARDS--*/

/*-GANE MAIN PAGE BLOG CARD--*/
    .glassmorphism.card-blog {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 71, 87, 0.2);
        border-radius: 12px;
        min-height: 400px; /* Ensure consistent card height */
    }

    .neon-text {
        text-shadow: 0 0 10px rgba(255, 71, 87, 0.8);
    }



   

    @media (max-width: 768px) {
        .glassmorphism {
            padding: 4px;
        }

        .text-3xl {
            font-size: 1.5rem;
        }

        .text-lg {
            font-size: 1rem;
        }

        .text-sm {
            font-size: 0.75rem;
        }

        .neon-button {
            padding: 8px 16px;
            font-size: 0.875rem;
        }

        .max-w-sm {
            max-width: 100%;
        }
    }
    



    .animate-blink {
        animation: blink 1s ease-in-out infinite;
    }

    @keyframes blink {
        0%, 100% {
            opacity: 1;
        }
        50% {
            opacity: 0.3;
        }
    }
    
    /*-GANE MAIN PAGE BLOG CARD--*/






    .neon-text {
        text-shadow: 0 0 10px rgba(255, 71, 87, 0.8);
    }

    .glassmorphism {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 71, 87, 0.2);
        border-radius: 12px;
    }

    
    .animate-blink {
        animation: blink 1s ease-in-out infinite;
    }

    @keyframes blink {
        0%, 100% {
            opacity: 1;
        }
        50% {
            opacity: 0.3;
        }
    }

    @media (max-width: 768px) {
        .glassmorphism {
            padding: 4px;
        }

        .glassmorphism.card {
            min-height: auto;
        }

        .text-4xl {
            font-size: 2rem;
        }

        .text-3xl {
            font-size: 1.5rem;
        }

        .text-lg {
            font-size: 1rem;
        }

        .text-sm {
            font-size: 0.75rem;
        }

        .neon-button {
            padding: 8px 16px;
            font-size: 0.875rem;
        }

        .max-w-md {
            max-width: 100%;
        }
    }






  .tournament-glass.tournament-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 71, 87, 0.2);
        border-radius: 12px;
        min-height: 300px;
    }

    

    .animate-tournament-blink {
        animation: tournament-blink 1s ease-in-out infinite;
    }

    @keyframes tournament-blink {
        0%, 100% {
            opacity: 1;
        }
        50% {
            opacity: 0.3;
        }
    }

    @media (max-width: 768px) {
        .tournament-glass.tournament-card {
            min-height: auto;
            padding: 3px;
        }

        .text-base {
            font-size: 0.875rem;
        }

        .text-xs {
            font-size: 0.625rem;
        }

        

       
    }



    /*----INDEX TOURNAMENT CARDS -----*/


     .banner-container {
            position: relative;
            width: 100%;
            aspect-ratio: 4/3;
        }

        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px 12px 0 0;
        }

        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(25, 25, 25, 0.3), rgba(25, 25, 25, 0.7));
            border-radius: 12px 12px 0 0;
        }

        .info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 16px;
            font-size: 0.75rem;
            color: #d1d5db;
            margin-bottom: 8px;
        }

        .info-grid div {
            display: flex;
            justify-content: space-between;
        }

        .animate-tournament-blink {
            animation: tournament-blink 1s ease-in-out infinite;
        }

        @keyframes tournament-blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.3;
            }
        }

        @media (max-width: 640px) {
            .info-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }

            .info-grid {
                grid-template-columns: 1fr;
                gap: 4px;
            }
        }

        @media (min-width: 640px) and (max-width: 1024px) {
            .info-grid {
                font-size: 0.7rem;
            }
        }





        /*-----PARTNER CSS SLIDER ----------*/


        
.carousel-wrapper {
    width: 100%;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    animation: marquee 25s linear infinite;
}
.carousel-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}
.carousel-list li {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    min-width: 150px;
}
.logo-frame {
    padding: 10px;
    border-radius: 8px;
   
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-list img {
    max-width: 120px;
    max-height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
}
.section-title span {
    font-size: 1rem;
    font-weight: 400;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .carousel-list li {
        min-width: 120px;
        padding: 8px;
    }
    .carousel-list img {
        max-width: 100px;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .carousel-track {
        animation: marquee 25s linear infinite;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-list img {
        max-width: 100px;
    }
    .section-title {
        font-size: 2rem;
    }
}