:root {
    /* Colors */
    --primary-color: #0f172a;
    --accent-color: #00e5ff;
    /* Cyan Neon */
    --accent-secondary: #f59e0b;
    /* Gold */
    --text-color: #e2e8f0;
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Spacing */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--primary-color);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('coming-soon-3d.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4));
    z-index: 1;
}

.coming-soon-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.logo-area {
    margin-bottom: 30px;
}

.logo-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent-color);
}

.status-badge {
    display: inline-block;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    margin-bottom: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    width: 85%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #3b82f6);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--accent-color);
    animation: load 2s ease-out forwards;
}

@keyframes load {
    from {
        width: 0%;
    }

    to {
        width: 85%;
    }
}

.loading-text {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 40px;
    font-family: monospace;
}

.notify-form {
    display: flex;
    gap: 10px;
}

.notify-form input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: inherit;
    transition: var(--transition);
}

.notify-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

@media (max-width: 480px) {
    .glass-card {
        padding: 30px 20px;
    }

    .notify-form {
        flex-direction: column;
    }

    .logo-icon {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}