/* =========================================
   СТРАНИЦА ЗАГЛУШКА (COMING SOON)
   ========================================= */

.cs-wrapper {
    min-height: 60vh; /* Центрируем по вертикали */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

/* Иконка (Круг) */
.cs-icon-box {
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 60, 130, 0.1);
    margin-bottom: 40px;
    position: relative;
    border: 1px solid rgba(0, 60, 130, 0.05);
}

/* SVG Клош */
.cs-svg {
    width: 80px;
    height: 80px;
    fill: none;
    stroke: #003c82;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: float 3s ease-in-out infinite;
}

/* Анимация пара */
.steam {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 6px;
    height: 15px;
    background: #00a0c8;
    border-radius: 50%;
    opacity: 0;
    filter: blur(2px);
}
.steam:nth-child(1) { animation: rise 2s infinite; margin-left: -20px; }
.steam:nth-child(2) { animation: rise 2s 0.5s infinite; margin-left: 0; }
.steam:nth-child(3) { animation: rise 2s 1s infinite; margin-left: 20px; }

/* Тексты */
.cs-title {
    font-family: 'Gotham', sans-serif;
    font-size: 2.5rem;
    color: #003c82;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cs-subtitle {
    font-size: 1.3rem;
    color: #00a0c8;
    font-weight: 600;
    margin-bottom: 20px;
}

.cs-text {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Кнопка */
.cs-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, #003c82 0%, #00a0c8 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Gotham', sans-serif;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 60, 130, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cs-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 60, 130, 0.4);
}

/* Анимации */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes rise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-30px) scale(1.5); opacity: 0; }
}

/* Адаптив */
@media (max-width: 768px) {
    .cs-title { font-size: 1.8rem; }
    .cs-icon-box { width: 120px; height: 120px; }
    .cs-svg { width: 60px; height: 60px; }
}