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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
}

/* Matrix Rain Effect */
.rain-container {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.rain-column {
    position: absolute;
    color: #15ced9;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 0 5px #15ced9, 0 0 10px #15ced9;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    animation: fadeIn 1s ease-in;
    position: relative;
    z-index: 1;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logo-container {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 30px;
    transition: all 0.6s ease;
    opacity: 0.9;
    cursor: pointer;
}

.logo-container:hover {
    opacity: 1;
    transform: scale(1.1);
}

.logo {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.title {
    font-size: 3rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.status {
    margin-bottom: 2rem;
}

.work-in-progress {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.message {
    margin-top: 2rem;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    font-style: italic;
}

.coming-soon {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .header {
        gap: 0.75rem;
        flex-direction: column;
    }

    .logo-container {
        width: 240px;
        height: 240px;
    }

    .title {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .coming-soon {
        font-size: 1.1rem;
    }

    .container {
        padding: 1.5rem;
    }
}
