@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

html {
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background-color: #020617;
    font-family: 'Inter', sans-serif;
}

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

#ui-layer {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px 80px;
    box-sizing: border-box;
    pointer-events: none;
    overflow-x: hidden;
}

.logo-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

#logo-canvas {
    width: 300px;
    height: 300px;
    max-width: 100%;
}

.text-glow   { display: none; }
.text-visible { opacity: 1; }
canvas { display: block; }
