@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(-45deg, #000000, #0e0e0e, #3a3100, #000000 , rgb(18, 18, 18));
    background-size: 400% 400%;
    animation: gradientBG 8s ease infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFD700;
}

@keyframes gradientBG {
    0% { background-position: 0% 60%; }
    50% { background-position: 100% 60%; }
    100% { background-position: 0% 60%; }
}


.page-header {
    font-size: 5rem;
    text-shadow: 0 0 155px #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    background-color: #222222e1;
    width: 900px;
    text-align: center;
    height: 105px;
    border-radius: 20px ;
    border: 2px solid rgb(255, 230, 0);
}

.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 20px #FFD700;
    margin-top: 100px;
}


.futuristic-btn {
    padding: 14px 30px;
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.futuristic-btn:hover {
    background: #FFD700;
    color: #000;
    box-shadow: 0 0 20px #FFD700, 0 0 40px #FFD700;
}

#leaderboard {
    margin-top: 20px;
    text-align: left;
}

.leaderboard-item {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #FFD700;
    padding: 10px;
    margin: 5px 0;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    width: 400px;
}

.hidden {
    display: none;
}
#lightmode{
    width: 40px;
    height: 40px;
    border-radius: 200px;
    font-size: 25px;
    background-color: #342d00;
     color: #FFD700;
    border: 2px solid #453c08;
     transition: 0.3s ease-in-out;
    position: absolute;
    left: 80vw;
    top: 70px;
    cursor: pointer;
}
#lightmode:hover{
    background-color: #ffffff;
    
}
.HoverClass1:hover {color: rgb(255, 255, 255) !important; background-color: rgb(36, 39, 1) !important;}
.HoverClass2:hover {color: rgb(32, 0, 0) !important; background-color: yellow !important;}
