/* Universal Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(10, 10, 10, 0.98) 50%, 
        rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.wolf-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.wolf-main {
    font-family: 'DynaPuff', cursive;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffffff, #e0e0e0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: textGlow 3s ease-in-out infinite alternate;
}

.wolf-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #dc3545;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: -2px;
    opacity: 0.9;
    animation: liveGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.2);
    }
}

@keyframes liveGlow {
    0% {
        color: #dc3545;
        opacity: 0.9;
        text-shadow: 0 0 5px rgba(220, 53, 69, 0.3);
    }
    100% {
        color: #ff4757;
        opacity: 1;
        text-shadow: 0 0 15px rgba(220, 53, 69, 0.8), 0 0 25px rgba(255, 71, 87, 0.4);
    }
}

/* REC Button Styles */
.rec-button {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.4);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.rec-dot {
    width: 8px;
    height: 8px;
    background: #dc3545;
    border-radius: 50%;
    animation: recBlink 1s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.8);
}

.rec-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    color: #dc3545;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: recTextGlow 1.5s ease-in-out infinite alternate;
}

@keyframes recBlink {
    0%, 50% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px rgba(220, 53, 69, 0.8);
    }
    25%, 75% {
        opacity: 0.3;
        transform: scale(0.8);
        box-shadow: 0 0 5px rgba(220, 53, 69, 0.4);
    }
}

@keyframes recTextGlow {
    0% {
        color: #dc3545;
        text-shadow: 0 0 5px rgba(220, 53, 69, 0.3);
    }
    100% {
        color: #ff4757;
        text-shadow: 0 0 10px rgba(220, 53, 69, 0.6);
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #17a2b8;
    background: rgba(23, 162, 184, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #17a2b8;
    background: rgba(23, 162, 184, 0.1);
}

.login-btn {
    background: linear-gradient(45deg, #17a2b8, #138496);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.login-btn:hover {
    background: linear-gradient(45deg, #138496, #117a8b);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.3);
}

.logout-btn {
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.logout-btn:hover {
    background: linear-gradient(45deg, #c82333, #bd2130);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-content {
        padding: 0 1rem;
    }

    .nav-logo {
        padding: 0.4rem;
    }

    .wolf-main {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .wolf-sub {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .rec-button {
        display: none;
    }

            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(15px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                z-index: 9999;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-100%);
                transition: all 0.3s ease;
                height: 100vh;
            }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, 
            rgba(23, 162, 184, 0.05) 0%,
            transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .nav-links.mobile-open {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        justify-content: center;
        align-items: center;
    }

    .nav-links.mobile-open::before {
        opacity: 1;
    }

            .nav-link {
                padding: 1rem 2rem;
                border-radius: 12px;
                margin: 0.5rem 0;
                background: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.2);
                color: #ffffff;
                font-size: 1.1rem;
                font-weight: 500;
                text-align: center;
                min-width: 180px;
                transition: all 0.3s ease;
                text-decoration: none;
            }

            .nav-link:hover {
                background: rgba(23, 162, 184, 0.2);
                border-color: rgba(23, 162, 184, 0.4);
                color: #17a2b8;
                transform: translateY(-2px);
            }

    .nav-link.active {
        background: linear-gradient(145deg, 
            rgba(23, 162, 184, 0.25) 0%,
            rgba(23, 162, 184, 0.15) 100%);
        border-color: rgba(23, 162, 184, 0.5);
        color: #17a2b8;
    }

    .login-btn {
        padding: 1rem 2rem;
        border-radius: 12px;
        margin: 0.5rem 0;
        background: rgba(23, 162, 184, 0.15);
        border: 1px solid rgba(23, 162, 184, 0.4);
        color: #17a2b8;
        font-size: 1.1rem;
        font-weight: 500;
        text-align: center;
        min-width: 180px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .login-btn:hover {
        background: rgba(23, 162, 184, 0.25);
        border-color: rgba(23, 162, 184, 0.6);
        color: #ffffff;
        transform: translateY(-2px);
    }

    .logout-btn {
        padding: 1rem 2rem;
        border-radius: 12px;
        margin: 0.5rem 0;
        background: rgba(220, 53, 69, 0.15);
        border: 1px solid rgba(220, 53, 69, 0.4);
        color: #dc3545;
        font-size: 1.1rem;
        font-weight: 500;
        text-align: center;
        min-width: 180px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .logout-btn:hover {
        background: rgba(220, 53, 69, 0.25);
        border-color: rgba(220, 53, 69, 0.6);
        color: #ffffff;
        transform: translateY(-2px);
    }

    .mobile-menu-toggle {
        display: block;
        background: rgba(23, 162, 184, 0.1);
        border: 1px solid rgba(23, 162, 184, 0.3);
        border-radius: 8px;
        color: #ffffff;
        padding: 0.5rem;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        color: #17a2b8;
        background: rgba(23, 162, 184, 0.2);
        border-color: rgba(23, 162, 184, 0.5);
    }
}
