/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    background: #050507;
    color: #ffffff;
    height: 100vh;
    overflow: hidden;
}

/* Background Animation */
.background {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(0,255,225,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,225,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: moveGrid 20s linear infinite;
}

/* Grid movement */
@keyframes moveGrid {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(-40px, -40px);
    }
}

/* Container */
.container {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Content */
.content {
    text-align: center;
    padding: 20px;
    backdrop-filter: blur(6px);
}

/* Title */
h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    color: #00ffe1;
    animation: glow 3s infinite;
}

/* Subtitle */
.subtitle {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #888;
}

/* Divider */
.divider {
    width: 60px;
    height: 2px;
    background: #00ffe1;
    margin: 25px auto;
    box-shadow: 0 0 10px rgba(0,255,225,0.8);
}

/* Description */
.description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Coming Soon */
.coming-soon {
    font-size: 1.5rem;
    color: #ff00c8;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(255,0,200,0.8);
}

/* Glow Animation */
@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(0,255,225,0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0,255,225,1);
    }
    100% {
        text-shadow: 0 0 5px rgba(0,255,225,0.5);
    }
}