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

body {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    overflow: hidden;
    background-color: #000;
}

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

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 2rem;
    color: #00e5ff;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #00e5ff, #b400ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.9;
}

.coming-soon {
    display: inline-block;
    border: 1px solid #00e5ff;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    color: #00e5ff;
}

.contact {
    margin-top: 2rem;
}

.contact p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-button {
    display: inline-block;
    background: linear-gradient(to right, #00e5ff, #b400ff);
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1rem;
    }
}
