/* Navigation Styles */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(92, 50, 99, 0.477);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: white !important;
    text-decoration: none !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.5;
    color: white !important;
    text-decoration: none !important;
}

.logo-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.game-title {
    color: white !important;
    font-size: 1.15rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: white !important;
    text-decoration: none !important;
    font-size: 1rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
    line-height: 1;
    display: inline-block;
    position: relative;
}

.nav-links a:hover {
    opacity: 0.5;
    color: white !important;
    text-decoration: none !important;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    top: 17px;
    left: 0;
    right: 0;
    height: 3px;
    background: #FC1183;
    margin-top: 3px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav {
        padding: 0.75rem 1rem;
    }

    .nav-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

