* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Golos Text', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* --- ХЕДЕР С ЛОГОТИПОМ --- */
.header {
    position: absolute; /* Отвязываем от остального контента */
    top: 60px;          /* Отступ от самого верха экрана */
    left: 0;
    width: 100%;        /* Растягиваем на всю ширину */
    text-align: center; /* Центрируем логотип */
    z-index: 10;
}

.logo {
    width: 170px;
}

/* --- КОНТЕЙНЕР С ТЕКСТОМ --- */
.content {
    z-index: 2;
}

.title {
    color: #ffffff;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* --- НИЖНЕЕ СВЕЧЕНИЕ --- */
.glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45vh; 
    background: linear-gradient(90deg, #a37b17 0%, #90477e 50%, #255688 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 5%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 5%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

/* --- АДАПТИВНОСТЬ ДЛЯ ТЕЛЕФОНОВ --- */
@media (max-width: 768px) {
    .header {
        top: 40px; /* На телефоне делаем верхний отступ чуть меньше */
    }

    .logo {
        width: 130px; 
    }

    .title {
        font-size: 55px; 
        letter-spacing: 2px;
    }

    .glow {
        height: 50vh; 
        filter: blur(60px); 
    }
}