/* ==========================================
   HEADER, NAV, MAIN & FOOTER
   ========================================== */
header {
    background: rgba(91, 232, 249, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);         
    padding: 10px 20px;
    border-bottom: 4px solid var(--neon-pink);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

nav .logo {
    font-size: clamp(2rem, 5vw, 4rem); 
    color: var(--text-light);
    text-shadow: 3px 3px 0px var(--neon-pink), 6px 6px 0px var(--neon-cyan);
    font-style: italic;
    font-weight: 900;
    line-height: 1; 
    white-space: nowrap;
}

nav ul { 
    display: flex; 
    list-style: none; 
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: clamp(1rem, 2vw, 1.2rem);
    padding: 8px 12px;
    transition: all 0.2s;
    border-radius: 5px;
    white-space: nowrap;
    display: inline-block;
}

nav ul li a:hover {
    background: var(--neon-pink);
    color: var(--bg-dark);
    box-shadow: 0px 0px 10px rgba(210, 108, 243, 0.8);
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
}

footer {
    text-align: center;
    background: rgba(12, 13, 31, 0.8);
    border-top: 4px solid var(--neon-cyan);
    padding: 30px;
    margin-top: 40px;
}

footer a {
    color: var(--neon-pink);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.2s;
    margin: 0 10px;
    display: inline-block;
}

footer a:hover {
    color: var(--neon-cyan);
    text-shadow: 0px 0px 8px var(--neon-cyan);
}

/* Layout‑specific responsive adjustments */
@media(max-width: 768px) {
    nav { 
        flex-direction: column;
        justify-content: center; 
    }
}