
/* Universal Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gold);
    z-index: 1001;
    text-decoration: none;
}

.nav-brand span {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    font-weight: 900;
    letter-spacing: 1px;
}

.vip-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    object-fit: cover;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger .bar {
    width: 24px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .nav-links {
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        padding: 0 !important;
        gap: 25px !important;
        box-shadow: none !important;
        border: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .hamburger {
        display: none !important;
    }

    .nav-brand {
        font-size: 1.5rem;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 8px 0;
        height: 60px;
    }

    .nav-container {
        padding: 0 12px;
        height: 100%;
    }

    .nav-brand {
        font-size: 1.1rem;
        z-index: 1003;
    }

    .nav-brand span {
        font-size: 1.1rem;
    }

    .vip-icon {
        width: 26px;
        height: 26px;
    }

    .hamburger {
        display: flex;
        z-index: 1003;
        cursor: pointer;
        padding: 8px;
    }

    .hamburger .bar {
        width: 22px;
        height: 2px;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 20px 15px;
        gap: 12px;
        transition: right 0.3s ease;
        border-left: 2px solid rgba(255, 215, 0, 0.3);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
        z-index: 1002;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 14px 20px;
        border-radius: 12px;
        width: 90%;
        max-width: 280px;
        text-align: center;
        background: rgba(26, 26, 26, 0.9);
        border: 1px solid rgba(255, 215, 0, 0.3);
        transition: all 0.3s ease;
        justify-content: center;
        color: #ffffff;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 3px 0;
        min-height: 48px;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 215, 0, 0.2);
        border-color: var(--gold);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
        color: var(--gold);
    }

    .btn-outline {
        width: 90%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
        margin-top: 10px;
        background: transparent;
        border: 2px solid var(--gold);
        color: var(--gold);
        border-radius: 12px;
        min-height: 48px;
    }

    .btn-outline:hover {
        background: var(--gold);
        color: var(--primary-black);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    }

    /* Prevent body scroll when menu is open */
    body.nav-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }

    /* Mobile menu overlay */
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
        backdrop-filter: blur(5px);
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .navbar {
        padding: 6px 0;
        height: 55px;
    }

    .nav-container {
        padding: 0 8px;
    }

    .nav-brand {
        font-size: 1rem;
    }

    .nav-brand span {
        font-size: 1rem;
    }

    .vip-icon {
        width: 24px;
        height: 24px;
    }

    .hamburger .bar {
        width: 20px;
        height: 2px;
    }

    .nav-links {
        width: 100%;
        right: -100%;
        top: 55px;
        height: calc(100vh - 55px);
        padding: 15px 10px;
        gap: 8px;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 12px 16px;
        width: 95%;
        max-width: none;
        border-radius: 10px;
        min-height: 44px;
    }

    .btn-outline {
        padding: 12px 16px;
        font-size: 0.9rem;
        width: 95%;
        max-width: none;
        border-radius: 10px;
        min-height: 44px;
    }
}

/* Very Small Devices */
@media (max-width: 360px) {
    .nav-container {
        padding: 0 5px;
    }

    .nav-brand span {
        display: none;
    }

    .nav-links {
        padding: 20px 10px;
    }
}
