body {
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
    margin: 0;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

#hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
}

.perspective-container {
    perspective: 1200px;
    transform-style: preserve-3d;
}

.glass-pill {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.mix-difference {
    mix-blend-mode: exclusion;
}

/* Accordion Styles */
details>summary {
    list-style: none;
}

details>summary::-webkit-details-marker {
    display: none;
}