/* Основные стили */
.coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F8F9FF 0%, #F0F3FF 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.coming-soon-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(91, 58, 243, 0.1);
    color: var(--primary-color);
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.coming-soon h1 {
    font-size: 3.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.description {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Превью функций */
.features-preview {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.feature span {
    font-size: 1.125rem;
    color: var(--text-color);
    font-weight: 500;
}

.feature:hover i {
    transform: translateY(-5px);
}

/* Форма подписки */
.notify-form {
    max-width: 500px;
    margin: 0 auto;
}

.notify-form p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    gap: 0.75rem;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(91, 58, 243, 0.08);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    box-shadow: 0 4px 25px rgba(91, 58, 243, 0.15);
    transform: translateY(-2px);
}

.input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    background: #F8F9FF;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.input-group input::placeholder {
    color: #A0A0A0;
}

.input-group input:focus {
    outline: none;
    border-color: rgba(91, 58, 243, 0.2);
    background: var(--white);
}

.btn-notify {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-notify i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.btn-notify:hover {
    background: #4525DB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 58, 243, 0.25);
}

.btn-notify:hover i {
    transform: translateX(3px);
}

.btn-notify:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(91, 58, 243, 0.2);
}

/* Стили для состояния ошибки */
.input-group input.error {
    border-color: #FF4D4D;
    background: rgba(255, 77, 77, 0.05);
}

.error-message {
    color: #FF4D4D;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.error-message.visible {
    display: block;
}

/* Анимированный фон */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-docs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.doc {
    position: absolute;
    width: 60px;
    height: 80px;
    background: rgba(91, 58, 243, 0.05);
    border-radius: 8px;
    animation: float 20s infinite linear;
}

.doc-1 { top: 15%; left: 10%; animation-delay: 0s; }
.doc-2 { top: 45%; right: 15%; animation-delay: -7s; }
.doc-3 { bottom: 20%; left: 20%; animation-delay: -14s; }

button[type="submit"] {
    margin-top: 0rem;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(50px, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Медиа запросы */
@media (max-width: 768px) {
    .coming-soon h1 {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1.25rem;
    }

    .features-preview {
        gap: 1.5rem;
    }

    .input-group {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .input-group input {
        width: 100%;
        text-align: center;
    }

    .btn-notify {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .coming-soon h1 {
        font-size: 2rem;
    }

    .badge {
        font-size: 0.875rem;
    }

    .feature i {
        font-size: 1.75rem;
    }

    .feature span {
        font-size: 1rem;
    }
}