header {
    position: sticky;
    top: 25px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: rgba(54, 54, 54, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    width: fit-content;
    margin: 10px auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

header .logo img {
    height: 35px;
    margin-right: 30px;
    transition: transform 0.5s ease, filter 0.5s ease;
}

header .logo:hover img {
    transform: rotate(360deg) scale(1.05);
    filter: brightness(0) saturate(100%) invert(67%) sepia(30%) saturate(7484%) hue-rotate(247deg) brightness(99%) contrast(91%);
}

header nav {
    display: flex;
    gap: 25px;
}

header nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

header nav a:hover {
    background-color: rgba(255, 255, 255, 0.274);
}

header .auth {
    display: flex;
    gap: 10px;
}

header .auth a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

header .auth a.discord {
    background-color: #23b6c1;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-left: 35px;
}

header .auth a.discord:hover {
    background-color: #23b6c1cc;
}






footer {
    text-align: center;
    padding: 20px 0;
    background-color: rgba(11, 13, 19, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    header {
        flex-direction: row;
        width: 90%;
        padding: 10px;
        justify-content: space-between;
        align-items: center;
    }
    header .logo img {
        display: none;
    }
    header nav {
        flex-direction: row;
        gap: 15px;
    }
    header .auth a.discord {
        display: none;
    }
    footer {
        padding: 15px 0;
    }
}