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

body {
    min-height: 100vh;
    background: #000;
    position: relative;
    font-family: 'Tomorrow', sans-serif;
    overflow: hidden;
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffeb3b;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 235, 59, 0.2);
    z-index: 2;
}

h1 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 200;
    letter-spacing: 0.1em;
    text-shadow: 0 0 5px rgba(255, 235, 59, 0.5);
} 