/* Обнуление стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow-x: hidden;
    background-color: #0b0c10;
}

/* Фоновое изображение */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Укажите правильный путь к вашей картинке ниже */
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    z-index: -1;
}

/* Затемнение фона, чтобы текст считывался идеально */
.background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}

/* Главная карточка (Стекломорфизм) */
.promo-container {
    background: rgba(20, 20, 25, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-in-out;
}

/* Анимация появления */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Логотип */
.logo {
    margin-bottom: 2rem;
}
.logo i {
    font-size: 3rem;
    color: #00d2ff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
}
.logo h1 {
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #fff, #a2a2a2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Контент */
.content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}
.content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1.5rem;
}

/* Статус */
.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #00d2ff;
    margin-bottom: 2rem;
}
.pulse-icon {
    width: 8px;
    height: 8px;
    background-color: #00d2ff;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 210, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 210, 255, 0); }
}

/* Форма подписки */
.subscribe-form form {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}
.subscribe-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}
.subscribe-form input:focus {
    border-color: #00d2ff;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
}
.subscribe-form button {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #0072ff, #00d2ff);
    color: #fff;
    font-weight: bold;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
}
.subscribe-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
}

/* Социальные сети */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-links a {
    color: #aaa;
    font-size: 1.4rem;
    transition: 0.3s;
}
.social-links a:hover {
    color: #00d2ff;
    transform: scale(1.2);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 480px) {
    .subscribe-form form {
        flex-direction: column;
    }
    .promo-container {
        padding: 2rem 1.5rem;
    }
}
