/* Reset & Base Elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0f;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --accent-glow: rgba(56, 189, 248, 0.4); /* Cyan/Light Blue Aura */
    --accent-glow-2: rgba(37, 99, 235, 0.3); /* Deep Blue Aura */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    height: 100vh;
    overflow: hidden; /* Strict fullpage no-scroll */
    display: flex;
    flex-direction: column;
    position: relative;
    /* Soft pattern for texture */
    background-image: radial-gradient(circle at center, rgba(255,255,255,0.01) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Background Animated Glow/Orbs */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    animation: drift 15s infinite alternate ease-in-out;
    pointer-events: none;
}

.orb-1 {
    width: 60vw;
    max-width: 600px;
    height: 60vw;
    max-height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 70vw;
    max-width: 700px;
    height: 70vw;
    max-height: 700px;
    background: radial-gradient(circle, var(--accent-glow-2) 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
    animation-direction: alternate-reverse;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 40px) scale(1.1); }
}

/* Main Minimalist Layout */
.coming-soon-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

/* Premium Glassmorphism Card Layer */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 4.5rem;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Inside the Card Grid/Flex */
.content-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.text-content {
    flex: 1.2;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Typography Aesthetics */
.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e2e8f0;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px transparent;
    transition: all 0.3s;
}

.badge:hover {
    box-shadow: 0 4px 20px var(--accent-glow);
    border-color: rgba(255,255,255,0.2);
}

.title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

/* Dynamic Gradient Highlight Text */
.title .highlight {
    background: linear-gradient(135deg, #38bdf8, #2563eb, #38bdf8);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s infinite linear;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 3.5rem;
    max-width: 95%;
}

/* Action Area (Social / Notify) */
.action-box {
    margin-top: 1rem;
}

.notify-text {
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    text-decoration: none;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    padding: 0.875rem 1.75rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px var(--accent-glow);
    color: #ffffff;
}

/* Image Illustration & Micro-Animation */
.floating-illustration {
    max-width: 100%;
    width: 100%;
    height: auto;
    animation: float 8s ease-in-out infinite;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.5));
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
    100% { transform: translateY(0px); }
}

/* Footer Element */
.footer {
    text-align: center;
    padding: 2rem;
    color: #64748b;
    font-size: 0.875rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(10, 10, 15, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10;
}

/* Deep Responsive Tuning */
@media (max-width: 1024px) {
    .glass-card {
        padding: 3rem;
    }
    .content-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2.5rem;
    }

    .glass-card {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
    
    body {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        background-size: cover;
    }
    
    .description {
        margin: 0 auto 2.5rem;
    }

    .social-links {
        justify-content: center;
    }
    
    .floating-illustration {
        max-width: 80%; /* smaller on mobile */
    }
}
