/* ============================================================
   BEYZANUR VARHAN — 3D Architecture Portfolio
   ============================================================ */

   *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* No smooth scroll behavior, let GSAP handle the scrub natively */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #0A0A0A;
}

body {
    background-color: #0A0A0A;
}

/* Glassmorphism Panels overlaying the 3D Canvas */
.glass-panel {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Prevent text selection on the 3D canvas */
#webgl-canvas {
    user-select: none;
    -webkit-user-select: none;
}