:root {
    --primary: #ffd700; /* Fadoos Yellow */
    --secondary: #3c1053; /* Deep Purple */
    --bg-color: #0c0214; /* Extremely deep, premium obsidian purple */
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.4);
    --gold-glow: rgba(255, 215, 0, 0.2);
}

.coming-soon-wrapper {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Premium Dot Matrix Overlay */
.coming-soon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 32px 32px;
    z-index: 0;
    pointer-events: none;
}

/* Background Glowing Blobs */
.coming-soon-wrapper .background-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.coming-soon-wrapper .blob {
    position: absolute;
    filter: blur(140px);
    opacity: 0.65;
    border-radius: 50%;
}

.coming-soon-wrapper .blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #5b1f7d 0%, transparent 70%);
    top: -200px;
    left: -150px;
    animation: float-left 20s infinite ease-in-out alternate;
}

.coming-soon-wrapper .blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation: float-right 16s infinite ease-in-out alternate-reverse;
}

.coming-soon-wrapper .blob-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-center 24s infinite ease-in-out alternate;
}

/* Glassmorphism Container */
.coming-soon-wrapper .coming-soon-container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 40px;
    background: rgba(22, 2, 36, 0.45);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                0 0 40px rgba(91, 31, 125, 0.15);
    max-width: 600px;
    width: 90%;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    
    /* Flex alignment */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Glowing Border effect */
.coming-soon-wrapper .coming-soon-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 36px;
    pointer-events: none;
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.05);
}

/* Launching Soon Pill Badge */
.coming-soon-wrapper .coming-soon-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 215, 0, 0.07);
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: #ffd700;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 25px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
    animation: pulseBadge 3s infinite ease-in-out;
}

/* Logo pulse */
.coming-soon-wrapper .logo {
    display: block;
    width: 220px;
    margin-bottom: 25px;
    filter: drop-shadow(0px 10px 25px rgba(0,0,0,0.6));
    animation: pulseLogo 4s infinite ease-in-out;
}

/* Modern Gradient Title */
.coming-soon-wrapper h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 40%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.08);
}

/* Footer style */
.coming-soon-wrapper .coming-soon-footer {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
}

.coming-soon-wrapper .coming-soon-footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin: 0;
    font-weight: 400;
}

/* Animations */
@keyframes float-left {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 80px) scale(1.15); }
}

@keyframes float-right {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, -60px) scale(1.1); }
}

@keyframes float-center {
    0% { transform: translate(-50%, -50%) translate(-30px, -20px) scale(1); }
    100% { transform: translate(-50%, -50%) translate(30px, 20px) scale(1.12); }
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.1); border-color: rgba(255, 215, 0, 0.25); }
    50% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.25); border-color: rgba(255, 215, 0, 0.50); }
}

@keyframes pulseLogo {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.03); }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon-wrapper h1 { font-size: 2.3rem; }
    .coming-soon-wrapper .coming-soon-container { padding: 45px 25px; }
    .coming-soon-wrapper .logo { width: 170px; }
    .coming-soon-wrapper .coming-soon-footer { margin-top: 30px; padding-top: 20px; }
}
