:root {
    --accent: #ffffff;
    --bg: #000000;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.2);
    --text-main: #ffffff;
    --text-dim: #888888;
}
body {
    margin: 0;
    background: var(--bg);
    color: var(--text-main);
    font-family: 'Quicksand', sans-serif;
    overflow-x: hidden; 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
canvas {
    position: fixed;
    top: 0; left: 0;
    z-index: -1;
    pointer-events: none;
}
.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 24px 160px 24px; 
    box-sizing: border-box;
}
h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.1;
}
p {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}
.nav-dock {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 12px;
    border-radius: 50px;
    border: 1px solid var(--border);
    display: flex;
    gap: 5px;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    white-space: nowrap; 
}
.nav-item {
    padding: 10px 15px;
    border-radius: 18px;
    transition: 0.3s;
}
.nav-item a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.nav-item:hover a { color: var(--accent); }
.nav-item:hover { background: var(--glass); }
@media (max-width: 768px) {
    h1 {font-size: 2.2rem;}
    p {
        font-size: 1rem;
        padding: 0 10px;
    }
    .container {
        padding-top: 40px;
        padding-bottom: 120px;
    }
    .nav-dock {
        bottom: 20px;
        width: 90%;
        max-width: 400px;
        justify-content: center;
        gap: 2px;
    }
    .nav-item {padding: 10px 8px;}
    .nav-item a {font-size: 10px;}
}
.page { animation: fadeIn 0.8s ease forwards; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
a { color: inherit; }