/* Estilos generales */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        @font-face {
    font-family: 'Lilita';
    src: url('../fonts/LilitaOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

        
        body {
            font-family: Arial, sans-serif;
            background-color: #000215;
            color: white;
            line-height: 1.6;
        }
        
        /* Estilos del menú */
        .header {
            background-color: #ffffff;
            padding: 1rem 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #FFD700;
            text-decoration: none;
                width: 153px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 0.4rem;
        }
        
        .nav-links a {
            color: #e71466;
            text-decoration: none;
            transition: color 0.3s;
            font-family: Lilita;
            background: #140008;
            padding: 11px 21px;
            border-radius: 6px;
        }
        
        .nav-links a:hover {
            background: #e71466;
            padding: 11px 21px;
            border-radius: 6px;
            color: #140008;
        }
        
        /* Menú hamburguesa */
        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: #e71466;
            margin: 5px;
            transition: all 0.3s ease;
                border-radius: 718px;
        }
        
        /* Estilos del leaderboard */
        .leaderboard {
            width: 90%;
            max-width: 800px;
            margin: 2rem auto;
            background: #222;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
        }
        
        h1 {
            color: #ffd700;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .player {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            margin: 10px 0;
            background: #333;
            border-radius: 5px;
            transition: transform 0.3s;
        }
        
        .player:hover {
            transform: scale(1.02);
        }
        
        /*.player:nth-child(2) {*/
        /*    background: #FFD700;*/
        /*    color: black;*/
        /*    font-weight: bold;*/
        /*}*/
        
        /*.player:nth-child(3) {*/
        /*    background: #C0C0C0;*/
        /*    color: black;*/
        /*    font-weight: bold;*/
        /*}*/
        
        /*.player:nth-child(4) {*/
        /*    background: #CD7F32;*/
        /*    color: black;*/
        /*    font-weight: bold;*/
        /*}*/
        
        .rank {
            font-weight: bold;
            font-size: 1.2em;
            min-width: 40px;
        }
        
        .name {
            flex-grow: 1;
            text-align: left;
            padding: 0 15px;
        }
        
        .score {
            font-weight: bold;
            min-width: 100px;
        }
        
        /* Media queries para responsive */
        @media screen and (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 70px;
                background-color: #222;
                flex-direction: column;
                width: 100%;
                text-align: center;
                clip-path: circle(0px at 90% -10%);
                -webkit-clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }
            
            .nav-links.active {
                clip-path: circle(1000px at 90% -10%);
                -webkit-clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }
            
            .nav-links li {
                margin: 1rem 0;
                opacity: 0;
            }
            
            .nav-links.active li {
                opacity: 1;
            }
            
            .hamburger {
                display: block;
            }
            
            .leaderboard {
                width: 95%;
                padding: 15px;
            }
        }
        
        /* Animaciones */
        @keyframes navLinkFade {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0px);
            }
        }
        
        .toggle .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        
        .toggle .line2 {
            opacity: 0;
        }
        
        .toggle .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        
        .register{
                
        }
        
         /* Sección de beneficios */
        .benefits-section {
            background: #000215;
            padding: 2.5rem;
            margin: 0rem 3rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            text-align: center;
            animation: fadeIn 1s ease-in-out;
        }
        
        .benefits-title {
            color: #FFD700;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        
        .benefits-description {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        
        .highlight {
            color: #FFD700;
            font-weight: bold;
        }
        
        .benefits-list {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 2rem 0;
        }
        
        .benefit-card {
            background: #ffffff1a;
            border-radius: 10px;
            padding: 1.5rem;
            width: 30%;
            min-width: 250px;
            margin: 1rem;
            transition: transform 0.3s;
            backdrop-filter: blur(5px);
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #FFD700;
        }
        
        .benefit-title {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #FFD700;
        }
        
        
        .player.gold {
    background: #FFD700 !important;
    color: black !important;
    font-weight: bold;
}

.player.silver {
    background: #C0C0C0 !important;
    color: black !important;
}

.player.bronze {
    background: #CD7F32 !important;
    color: black !important;
}