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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0421 0%, #1a0933 100%);
    color: #fff;
    height: 100vh;
}

.container {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(100px);
    opacity: 0.3;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #8823DB;
    border-radius: 50%;
    top: -100px;
    left: -100px;
    animation: float 20s ease-in-out infinite;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: #8823DB;
    border-radius: 50%;
    bottom: -50px;
    right: 10%;
    animation: float 25s ease-in-out infinite reverse;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #a445f5;
    border-radius: 50%;
    top: 50%;
    right: -100px;
    animation: float 22s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 50px) scale(0.9);
    }
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 40px;
    animation: fadeIn 1s ease-in;
}

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

header {
    margin-bottom: 60px;
}

.logo {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #8823DB 0%, #a445f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(136, 35, 219, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(136, 35, 219, 0.6));
    }
}

.hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.description {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.subtitle {
    font-size: 24px;
    font-weight: 300;
    color: #e0e0e0;
}

.tagline {
    font-size: 20px;
    font-style: italic;
    color: #8823DB;
    font-weight: 500;
}

.coming-soon {
    margin: 40px 0;
    animation: pulse-scale 2s ease-in-out infinite 0.5s;
}

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.label {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid #8823DB;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(136, 35, 219, 0.1);
    transition: all 0.3s ease;
}

.label:hover {
    background: rgba(136, 35, 219, 0.2);
    box-shadow: 0 0 20px rgba(136, 35, 219, 0.5);
}

.loader {
    margin: 40px 0;
    animation: slideInUp 0.8s ease-out 0.4s backwards;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(136, 35, 219, 0.2);
    border-top-color: #8823DB;
    border-right-color: #a445f5;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

footer {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeIn 1.5s ease-in 0.8s backwards;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #8823DB;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(136, 35, 219, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(136, 35, 219, 0);
    }
}

.status {
    font-size: 14px;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
    }

    .tagline {
        font-size: 16px;
    }

    .logo {
        font-size: 36px;
    }

    .blob-1, .blob-2, .blob-3 {
        filter: blur(80px);
        opacity: 0.2;
    }

    .content {
        padding: 20px;
    }

    header {
        margin-bottom: 40px;
    }

    .hero {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

    .tagline {
        font-size: 14px;
    }

    .logo {
        font-size: 28px;
    }

    .content {
        padding: 15px;
    }

    footer {
        bottom: 20px;
    }
}
