@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=VT323&display=swap');

:root {
    --neon-pink: #ff4fd8;
    --neon-blue: #00eaff;
    --neon-green: #39ff14;
    --neon-orange: #ff6b35;
    --navbar-bg: #0a0a0f;
    --navbar-bg-gradient: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(20, 15, 35, 0.98) 100%);
    --navbar-height: 80px;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(10, 10, 15, 0.85);
}

/* Modern Glassmorphism Navbar */
.wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 0;
    height: var(--navbar-height);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 1px 0 var(--glass-border);
    overflow: visible;
    border-bottom: 1px solid var(--glass-border);
}

.wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, 
        rgba(255, 79, 216, 0.03) 0%, 
        rgba(0, 234, 255, 0.03) 50%, 
        rgba(255, 79, 216, 0.03) 100%);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin-top: var(--navbar-height);
}

.wrapper nav {
    background: transparent;
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 3vw;
    position: relative;
}

/* Ensure menu icon is positioned correctly */
nav input[type="checkbox"] {
    display: none;
}

nav .content {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

nav .logo {
    display: flex;
    align-items: center;
    height: 50px;
    width: 50px;
    margin-right: 2vw;
    flex-shrink: 0;
    z-index: 2;
    transition: all 0.3s ease;
}

nav .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav .logo:hover {
    transform: scale(1.12) rotate(-6deg);
}

nav .links {
    display: flex;
    align-items: center;
    gap: 0.3vw;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    font-family: 'ITC Benguiat Std', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

nav .links-right {
    display: flex;
    align-items: center;
    gap: 0.3vw;
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
    font-family: 'ITC Benguiat Std', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: absolute;
    right: 3vw;
    z-index: 1;
}

nav .links li {
    position: relative;
    margin: 0;
    padding: 0;
}

nav .links-right li {
    position: relative;
    margin: 0;
    padding: 0;
}

nav .links li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    font-size: 1.1rem;
    min-width: 100px;
    height: 48px;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}

nav .links-right li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    font-size: 1.1rem;
    min-width: 100px;
    height: 48px;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}

nav .links li a:hover, nav .links li a:focus, nav .links li a:focus-visible {
    color: #fff;
    background: rgba(255, 79, 216, 0.15);
    border-color: rgba(255, 79, 216, 0.4);
    box-shadow: 0 4px 20px rgba(255, 79, 216, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

nav .links-right li a:hover, nav .links-right li a:focus, nav .links-right li a:focus-visible {
    color: #fff;
    background: rgba(255, 79, 216, 0.15);
    border-color: rgba(255, 79, 216, 0.4);
    box-shadow: 0 4px 20px rgba(255, 79, 216, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

nav .links li a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 4px;
}

nav .links li a:hover::after, nav .links li a:focus::after {
    width: 100%;
}

nav .links-right li a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 4px;
}

nav .links-right li a:hover::after, nav .links-right li a:focus::after {
    width: 100%;
}

nav .links ul {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 200px;
    padding: 0.6em 0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 1px 0 var(--glass-border);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid var(--glass-border);
    list-style: none;
}

nav .links-right ul {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    transform: translateY(-8px);
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 200px;
    padding: 0.6em 0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 1px 0 var(--glass-border);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid var(--glass-border);
    list-style: none;
}

nav .links ul li {
    list-style: none;
    padding-left: 0;
}

nav .links li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

nav .links-right li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

nav .links ul li a {
    color: rgba(255, 255, 255, 0.8);
    background: none;
    font-family: 'ITC Benguiat Std', sans-serif;
    font-weight: 500;
    font-size: 0.95em;
    padding: 0.8em 1.5em;
    border-radius: 6px;
    transition: all 0.2s;
    box-shadow: none;
    border: none;
    text-align: center;
    display: block;
}

nav .links ul li a:hover {
    color: #fff;
    background: rgba(255, 79, 216, 0.12);
}

nav .links-right ul li a {
    color: rgba(255, 255, 255, 0.8);
    background: none;
    font-family: 'ITC Benguiat Std', sans-serif;
    font-weight: 500;
    font-size: 0.95em;
    padding: 0.8em 1.5em;
    border-radius: 6px;
    transition: all 0.2s;
    box-shadow: none;
    border: none;
    text-align: center;
    display: block;
}

nav .links-right ul li a:hover {
    color: #fff;
    background: rgba(255, 79, 216, 0.12);
}

nav .links ul hr {
    border: none;
    border-top: 1px solid var(--glass-border);
    margin: 0.4em 0;
    opacity: 0.5;
}

nav .links ul .separator {
    padding: 0;
    margin: 0.4em 0;
}

nav .links ul .separator hr {
    border: none;
    border-top: 1px solid var(--glass-border);
    margin: 0;
    opacity: 0.5;
}

nav .links-right ul .separator {
    padding: 0;
    margin: 0.4em 0;
}

nav .links-right ul .separator hr {
    border: none;
    border-top: 1px solid var(--glass-border);
    margin: 0;
    opacity: 0.5;
}

nav .desktop-link {
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-family: 'ITC Benguiat Std', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 100px;
    height: 48px;
    box-sizing: border-box;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
}

nav .desktop-link:hover, nav .desktop-link:focus, nav .desktop-link:focus-visible {
    color: #fff;
    background: rgba(255, 79, 216, 0.15);
    border-color: rgba(255, 79, 216, 0.4);
    box-shadow: 0 4px 20px rgba(255, 79, 216, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

nav .links-right .desktop-link:hover, nav .links-right .desktop-link:focus, nav .links-right .desktop-link:focus-visible {
    color: #fff;
    background: rgba(255, 79, 216, 0.15);
    border-color: rgba(255, 79, 216, 0.4);
    box-shadow: 0 4px 20px rgba(255, 79, 216, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

nav .desktop-link i {
    transition: transform 0.3s;
    font-size: 0.65em;
    margin-left: 0.25em;
    flex-shrink: 0;
}

nav .links li:hover .desktop-link i, nav .links-right li:hover .desktop-link i {
    transform: rotate(180deg);
}

nav .desktop-link::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 4px;
}

nav .desktop-link:hover::after, nav .desktop-link:focus::after {
    width: 100%;
}

nav .links-right .desktop-link::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 4px;
}

nav .links-right .desktop-link:hover::after, nav .links-right .desktop-link:focus::after {
    width: 100%;
}

/* Mobile-only items (hidden on desktop) */
.mobile-only {
    display: none;
}

/* Hide menu icon on desktop */
.menu-icon {
    display: none;
}

/* Mobile hamburger icon styling */
@media (max-width: 900px) {
    .menu-icon {
        display: flex !important;
        position: absolute !important;
        right: 20px !important;
        top: 15px !important;
        width: 50px !important;
        height: 50px !important;
        background: rgba(255, 79, 216, 0.15) !important;
        border: 2px solid rgba(255, 79, 216, 0.5) !important;
        border-radius: 8px !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 1000 !important;
        cursor: pointer !important;
        transition: all 0.3s ease;
    }
    
    .menu-icon:hover {
        background: rgba(255, 79, 216, 0.25) !important;
        border-color: rgba(255, 79, 216, 0.7) !important;
    }
    
    .menu-icon i {
        color: #fff !important;
        font-size: 24px !important;
    }
}

/* Hide checkboxes used for dropdown functionality (except mobile menu) */
nav .links input[type="checkbox"],
nav .links-right input[type="checkbox"] {
    display: none;
}

/* Responsive Design */
@media (max-width: 900px) {
    .mobile-only {
        display: block;
    }
    nav {
        position: relative;
    }
    nav .content {
        flex-direction: row;
        align-items: center;
        width: 100%;
    }
    nav .logo {
        order: 1;
        margin-right: 2vw;
    }
    nav .links {
        order: 2;
        margin: 0 0 0 auto;
        position: fixed;
        left: -100%;
        top: 0;
        transform: none;
        width: 100%;
        height: 100vh;
        font-size: 1.1em;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 5em 0 2em 0;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 10000;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }
    nav .links-right {
        order: 3;
        display: none;
    }
    #show-menu:checked ~ .content .links {
        left: 0 !important;
        opacity: 1;
    }
    
    nav .links {
        opacity: 0.95;
    }
    nav .menu-icon {
        display: flex !important;
        color: #fff !important;
        font-size: 24px !important;
        cursor: pointer;
        z-index: 1000 !important;
        position: absolute !important;
        right: 15px !important;
        top: 15px !important;
        width: 45px !important;
        height: 45px !important;
        background: rgba(255, 79, 216, 0.2) !important;
        border-radius: 8px !important;
        border: 2px solid rgba(255, 79, 216, 0.5) !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 10px !important;
    }
    
    nav .menu-icon i {
        font-size: 24px !important;
        color: #fff !important;
        display: block !important;
    }
    nav .menu-icon:hover {
        color: var(--neon-pink);
    }
    nav .links li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }
    nav .links li a {
        display: block;
        padding: 1em 1.5em;
        font-size: 1.3em;
        color: rgba(255, 255, 255, 0.85);
        background: none;
        border: none;
        text-align: center;
        min-width: 200px;
        margin: 0 auto;
        position: relative;
        z-index: 1001;
    }
    nav .links li a:hover {
        color: #fff;
        background: rgba(255, 79, 216, 0.12);
        border: none;
        box-shadow: none;
        transform: none;
    }
    nav .links ul {
        position: static;
        transform: none;
        background: rgba(10, 10, 15, 0.98);
        width: 100%;
        padding: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        border: none;
        border-radius: 0;
        backdrop-filter: none;
    }
    #show-cinemas-mobile:checked ~ ul {
        display: block;
    }
    nav .links ul li {
        padding: 0.5em 2em;
        font-size: 1em;
    }
    nav .links ul li a {
        color: rgba(255, 255, 255, 0.7);
        background: none;
    }
    nav .links ul li a:hover {
        color: #fff;
        background: rgba(255, 79, 216, 0.12);
    }
    nav .links-right ul li a:hover {
        color: #fff;
        background: rgba(255, 79, 216, 0.12);
    }
    nav .desktop-link {
        justify-content: center;
        padding: 1em 1.5em;
        font-size: 1.3em;
        background: none;
        border: none;
        min-width: 200px;
        margin: 0 auto;
    }
    nav .desktop-link:hover {
        background: rgba(255, 79, 216, 0.12);
        border: none;
        box-shadow: none;
        transform: none;
    }
}

@media screen and (max-width: 600px) {
    nav .logo {
        height: 40px;
        width: 40px;
        margin-right: 1.5vw;
    }
    nav .menu-icon {
        font-size: 1.3em;
    }
    nav .links {
        padding: 1.5em 0;
    }
    nav .links li a {
        font-size: 1.1em;
        padding: 0.8em 1.5em;
    }
    nav .desktop-link {
        font-size: 1.1em;
        padding: 0.8em 1.5em;
    }
    nav .links ul li a {
        font-size: 0.95em;
        padding: 0.6em 1.5em;
    }
    nav .content {
        padding: 0 1em;
    }
}

@media screen and (max-width: 480px) {
    nav .content {
        padding: 0.5em;
    }
    nav .logo {
        height: 35px;
        width: 35px;
        margin-right: 1vw;
    }
    nav .menu-icon {
        font-size: 1.2em;
    }
    nav .links li a {
        font-size: 1em;
        padding: 0.7em 1.2em;
    }
    nav .desktop-link {
        font-size: 1em;
        padding: 0.7em 1.2em;
    }
    nav .links ul li a {
        font-size: 0.9em;
        padding: 0.5em 1.2em;
    }
}

#show-menu, #show-features {
    display: none;
}

.desktop-link a {
    padding: 15px;
}

@media screen and (max-width: 400px) {
    .wrapper nav {
        padding: 0 0.5em;
    }
    nav .logo {
        height: 32px;
        width: 32px;
        margin-right: 0.8vw;
    }
    nav .menu-icon {
        font-size: 1.1em;
    }
    nav .links li a {
        font-size: 0.95em;
        padding: 0.6em 1em;
    }
    nav .desktop-link {
        font-size: 0.95em;
        padding: 0.6em 1em;
    }
    nav .links ul li a {
        font-size: 0.85em;
        padding: 0.5em 1em;
    }
    nav .content {
        padding: 0 0.8em;
    }
}