/* =========================
   COMING-SOON.CSS – Futuristic green/purple theme
   Centered, responsive, matches main hero style
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'SF Pro Display', 'Helvetica Neue', 'Poppins', system-ui, sans-serif;
    background: #0a1f1a;
    color: #e2e8f0;
    line-height: 1.6;
}

.coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a1f1a;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

/* Subtle glow (optional – matches main hero without being intrusive) */
.coming-soon::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.06), transparent 70%);
    pointer-events: none;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
    width: 100%;
}

.coming-soon-content {
    text-align: center;
    background: rgba(30, 16, 41, 0.4);
    backdrop-filter: blur(4px);
    border-radius: 32px;
    padding: 60px 40px;
    border: 1px solid rgba(192, 132, 252, 0.2);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coming-soon-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(192, 132, 252, 0.15);
    border-color: rgba(74, 222, 128, 0.5);
}

.coming-soon-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.coming-soon-content .khem {
    color: #ffffff;
}

.coming-soon-content .it {
    color: #4ade80;
}

.coming-soon-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #e2d6f0;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.coming-soon-content p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: #d1e0d6;
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto 32px;
}

.coming-soon-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    background: #c084fc;
    color: #0a1f1a;
    border: 2px solid #c084fc;
    box-shadow: 0 0 8px rgba(192, 132, 252, 0.3);
}

.btn-primary:hover {
    background: #a855f7;
    border-color: #a855f7;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

/* Responsive */
@media (max-width: 600px) {
    .coming-soon-content {
        padding: 40px 24px;
    }
    .btn-primary {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .coming-soon-content {
        padding: 32px 20px;
    }
}
    .coming-soon-content h1 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
    .coming-soon-content h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    .coming-soon-content p {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
    }