:root {
    --neon-blue: #00d4ff;
    --deep-blue: #0062ff;
    --bg-dark: #020408;
}

html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.portal-bg {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(rgba(2, 4, 8, 0.8), rgba(2, 4, 8, 0.95)), 
                url('bg.jpg'); 
    background-size: cover;
    background-position: center;
    padding: 40px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7) !important;
    transition: 0.3s;
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--neon-blue);
    transition: width 0.3s ease-in-out;
    box-shadow: 0 0 10px var(--neon-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #ffffff !important;
}

h1 { font-weight: 800; letter-spacing: -1px; text-transform: uppercase; }
.glow-text { color: var(--neon-blue); text-shadow: 0 0 15px rgba(0, 212, 255, 0.4); }
.light-label { color: rgba(255, 255, 255, 0.7) !important; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.main-description { color: rgba(255, 255, 255, 0.8); max-width: 500px; font-weight: 400; }

.btn-pill {
    border-radius: 50px;
    padding: 16px 45px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(2, 4, 8, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    min-width: 180px;
    padding: 10px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-item:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-blue) !important;
    padding-left: 25px;
}

.wl-scan {
    color: rgba(255, 255, 255, 0.6);
    background: linear-gradient(120deg, transparent 30%, #fff 50%, transparent 70%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shine 3s infinite linear;
    font-weight: bold;
    display: inline-block;
}

@keyframes shine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.btn-primary-blue { background: linear-gradient(90deg, var(--deep-blue), var(--neon-blue)); color: white; box-shadow: 0 10px 20px rgba(0, 98, 255, 0.2); }
.btn-primary-blue:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4); color: white; }
.btn-glass { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); color: white; }
.btn-glass:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--neon-blue); color: white; transform: translateY(-3px); }

.glass-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 30px; padding: 30px; backdrop-filter: blur(20px); transition: 0.3s ease; }
.glass-card:hover { border-color: rgba(0, 212, 255, 0.3); background: rgba(255, 255, 255, 0.05); }

.voice-badge { background: rgba(0, 212, 255, 0.1); border: 1px solid rgba(0, 212, 255, 0.3); color: var(--neon-blue); padding: 8px 20px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; display: inline-block; margin-bottom: 20px; }
.text-success { color: #00ff88 !important; text-shadow: 0 0 10px rgba(0, 255, 136, 0.3); }