body {
    background: linear-gradient(rgba(3, 5, 10, 0.8), rgba(3, 5, 10, 0.85)), url('https://images.unsplash.com/photo-1477346611705-65d1883cee1e?q=80&w=1170&auto=format&fit=crop');
    background-size: cover;
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

.serif-font {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal !important;
}

.floating-text {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.glass-nav {
    background: rgba(3, 5, 10, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.logo-text span {
    font-weight: 600;
    color: #d8b4fe;
}

.tab-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 0.825rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    padding: 0.5rem 0;
    cursor: pointer;
}

.tab-btn:hover {
    color: #f1f5f9;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #d8b4fe;
    transition: all 0.25s ease;
    transform: translateX(-50%);
}

.tab-btn.active {
    color: #d8b4fe;
}

.tab-btn.active::after {
    width: 80%;
}