/* ==========================================
   css/dev.css — СТИЛИ СТРАНИЦЫ "В РАЗРАБОТКЕ"
   ========================================== */

.dev-section {
    padding: 140px 0 80px;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 250px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Стеклянная карточка по центру */
.dev-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    /*border: 1px solid rgba(122, 0, 254, 0.3);*/
    box-shadow: 0 0 30px rgba(122, 0, 254, 0.15),
                inset 0 0 15px rgba(122, 0, 254, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* Пульсирующий бейджик статуса */
.dev-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(122, 0, 254, 0.15);
    border: 1px solid rgba(122, 0, 254, 0.4);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #c48eff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #7a00fe;
    border-radius: 50%;
    box-shadow: 0 0 8px #7a00fe;
    animation: pulseGlow 1.8s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); opacity: 0.7; box-shadow: 0 0 0 0 rgba(122, 0, 254, 0.7); }
    70% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 8px rgba(122, 0, 254, 0); }
    100% { transform: scale(0.95); opacity: 0.7; box-shadow: 0 0 0 0 rgba(122, 0, 254, 0); }
}

/* Заголовок и текст */
.dev-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.dev-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Блок кнопок */
.dev-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Фирменная киберпанк-кнопка (со срезанными углами) */
.cyber-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    background: #7a00fe;
    border: none;
    text-decoration: none;
    cursor: pointer;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.cyber-btn:hover {
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.4);
    filter: drop-shadow(0 0 15px var(--main-color));
    color: var(--text-color);
    transform: translateY(-5px);
}

/* Кнопка Discord — оригинальная заливка #5865F2 + Blurple неон */
.cyber-btn-discord {
    background: #5865F2;
    color: #ffffff;
}

.cyber-btn-discord:hover {
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.4);
    filter: drop-shadow(0 0 15px var(--main-color));
    color: var(--text-color);
    transform: translateY(-5px);
}

@media (max-width: 600px) {
    .dev-section {
        padding: 110px 0 60px;
    }
    .dev-card {
        padding: 35px 20px;
    }
    .dev-title {
        font-size: 28px;
    }
    .dev-actions {
        flex-direction: column;
    }
    .dev-actions .cyber-btn {
        width: 100%;
    }
}