/* Основные стили */
body {
    background-color: #121212; /* Темный фон */
    color: #eeeeee; /* Светлый текст */
    font-family: 'Roboto Mono', monospace;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
}

/* Заголовки */
h1 {
    font-size: 3rem;
    color: #4a90e2; /* Яркий синий акцент */
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-top: 0;
}

.status-message {
    font-weight: bold;
    font-size: 1.2rem;
}

/* Форма подписки */
.subscribe-form {
    margin-top: 40px;
    margin-bottom: 40px;
}

.subscribe-form h2 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.subscribe-form form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Для мобильных устройств */
    gap: 10px;
}

.subscribe-form input[type="email"] {
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #444;
    background-color: #222;
    color: #eee;
    border-radius: 5px;
    min-width: 250px;
}

.subscribe-form button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #4a90e2; /* Акцентный цвет */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #357abd;
}

/* Социальные сети */
footer p {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #a0a0a0;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4a90e2; /* Акцентный цвет при наведении */
}

/* Адаптивность */
@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .subscribe-form input[type="email"] {
        width: 100%;
        min-width: unset;
    }
    
    .subscribe-form button {
        width: 100%;
    }
}