* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: black;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: white;
}

canvas {
    position: absolute;
    inset: 0;
}

.card {
    position: relative;
    width: 500px;
    padding: 60px;
    backdrop-filter: blur(30px);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    text-align: center;
    animation: fadeUp 1s ease forwards;
}

h1 {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.scarcity {
    margin-bottom: 25px;
    opacity: 0.8;
}

#spots {
    color: #6C63FF;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
    margin-bottom: 15px;
}

button {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg,#6C63FF,#4B45CC);
    color: white;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

button:hover {
    transform: translateY(-2px);
}

.loader {
    display: none;
}

@keyframes fadeUp {
    from {opacity:0; transform:translateY(30px);}
    to {opacity:1; transform:translateY(0);}
}
