/* ============================
   COMING SOON SECTION
============================ */
.coming-soon-section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
}

/* animated background glow */
.coming-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 25, 0.25), transparent 60%);
    filter: blur(120px);
    animation: glowMove 8s ease-in-out infinite alternate;
}

@keyframes glowMove {
    from {
        transform: translate(-150px, -100px);
    }

    to {
        transform: translate(150px, 100px);
    }
}

/* main card */
.coming-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    padding: 80px 60px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px);
    position: relative;
    z-index: 2;
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* badge */
.coming-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 122, 25, 0.15);
    color: var(--color-orange);
    border-radius: 40px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 rgba(255, 122, 25, 0.6);
    }

    70% {
        box-shadow: 0 0 20px rgba(255, 122, 25, 0);
    }

    100% {
        box-shadow: 0 0 0 rgba(255, 122, 25, 0);
    }
}

/* heading */
.coming-container h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
}

/* paragraph */
.coming-container p {
    font-size: 18px;
    color: #cccccc;
    max-width: 650px;
    margin: 0 auto 40px;
}

/* buttons */
.coming-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 768px) {
    .coming-container {
        padding: 60px 30px;
    }

    .coming-container h1 {
        font-size: 36px;
    }

    .coming-container p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .coming-container h1 {
        font-size: 30px;
    }

    .coming-badge {
        font-size: 12px;
        padding: 8px 18px;
    }
}
