﻿.under-construction-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: radial-gradient(circle at top, #0f2027, #0b1620 60%);
    position: relative;
    overflow: hidden;
}

.under-container {
    max-width: 600px;
    z-index: 2;
}

.under-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    color: #00eaff;
    border: 1px solid #00eaff;
    margin-bottom: 20px;
    animation: neonGlow 1.5s ease-in-out infinite alternate;
}

.under-title {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(90deg, #00eaff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.under-desc {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.under-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    background: #00eaff;
    color: #0b1620;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

    .under-btn:hover {
        background: #3b82f6;
        color: #fff;
        box-shadow: 0 0 15px #00eaff;
    }

    .under-btn .arrow {
        transition: transform 0.3s ease;
    }

    .under-btn:hover .arrow {
        transform: translateX(5px);
    }

/* Neon animasyon */
@keyframes neonGlow {
    from {
        box-shadow: 0 0 5px #00eaff;
    }

    to {
        box-shadow: 0 0 20px #00eaff;
    }
}
