/* Шапка без навигации */
.simple-header {
    width: 100%;
    padding: 30px 0;
    display: flex;
    justify-content: center; /* Лого по центру, раз нет ссылок */
    position: absolute;
    top: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.8;
}

.logo-img {
    height: 30px;
}

.logo span {
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: #fff;
}

/* Контентная часть */
main {
    text-align: center;
    margin-top: 60px; /* Учитываем отсутствие высокой шапки */
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* Гибкий размер шрифта */
    font-weight: 900;
    margin-bottom: 15px;
}

p {
    color: #888;
    max-width: 500px;
    margin: 0 auto 30px;
}

/* Футер в одну короткую строку */
.simple-footer {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
}

.simple-footer p {
    font-size: 0.8rem;
    color: #444; /* Сделаем его почти незаметным */
    text-transform: uppercase;
    letter-spacing: 2px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050a18; /* Темно-синий фон как на скрине */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

/* Эффект сетки на фоне */
body::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90px, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 50px;
}

.logo span {
    color: #a5a5a5;
    font-weight: 400;
}

.badge {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid #5865f2;
    color: #5865f2;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.8rem;
    margin-bottom: 30px;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

h1 span {
    background: linear-gradient(90deg, #5865f2, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: #b9bbbe;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

input[type="email"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 12px;
    color: white;
    width: 300px;
    outline: none;
    transition: 0.3s;
}

input[type="email"]:focus {
    border-color: #5865f2;
}

button {
    background: #5865f2;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    h1 { font-size: 2.5rem; }
    input[type="email"] { width: 100%; }
}
