/* Подключение шрифтов */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(165deg, #fce4ec 0%, #f8cde5 35%, #e1bee7 70%, #fffde7 95%, #fcf7e5 100%);
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.3);
}

/* Контейнер для фоновой анимации */
.background-animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* "Блики" */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
}

.blob-1 { width: 350px; height: 350px; background-color: rgba(255, 192, 203, 0.6); top: 5%; left: 5%; animation: blobMove 15s infinite alternate; }
.blob-2 { width: 300px; height: 300px; background-color: rgba(255, 223, 186, 0.5); bottom: 10%; right: 5%; animation: blobMove 18s infinite alternate reverse; }
.blob-3 { width: 250px; height: 250px; background-color: rgba(255, 255, 224, 0.5); top: 30%; right: 20%; animation: blobMove 13s infinite alternate; }
.blob-4 { width: 400px; height: 400px; background-color: rgba(255, 160, 122, 0.4); bottom: -5%; left: 30%; animation: blobMove 20s infinite alternate reverse; }

@keyframes blobMove {
    0% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.05); }
    50% { transform: translate(0, 30px) scale(0.95); }
    75% { transform: translate(-30px, 10px) scale(1.02); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Основной контейнер */
.container {
    text-align: center;
    max-width: 900px;
    width: 90%;
    padding: 30px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: containerFadeIn 1.5s ease-out forwards;
    transform: translateY(20px);
    opacity: 0;
}

@keyframes containerFadeIn {
    to { transform: translateY(0); opacity: 1; }
}

/* Шапка */
.logo-header {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 15vh;
}

:root {
    --gold-color: #FFD700;
    --gold-color-light: #FFE075;
    --gold-shadow-soft: 0 0 12px rgba(255, 215, 0, 0.7);
    --gold-shadow-strong: 0 0 25px rgba(255, 215, 0, 0.8);
    --text-shadow-common: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

/* Заголовок Svinka Lash */
.brand-name {
    font-family: 'Great Vibes', cursive;
    font-size: 4em;
    color: var(--gold-color);
    text-shadow: 0 0 8px rgba(0,0,0,0.4), 0 0 20px rgba(255, 215, 0, 0.9);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

/* SVG Иконка сердца */
.heart-icon-svg {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    width: 1.2em;
    height: 1.2em;
    animation: heartbeat 1.5s infinite;
}

.heart-icon-svg {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8))
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.6))
            drop-shadow(0 0 45px rgba(255, 215, 0, 0.4));
}

@keyframes heartbeat {
    0%   { transform: translateY(-5px) scale(1); }
    50%  { transform: translateY(-5px) scale(1.15); }
    100% { transform: translateY(-5px) scale(1); }
}

/* Контент */
.main-content {
    position: relative;
    margin-top: 40px;
    margin-bottom: 40px;
}

.soon-text {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.1em;
}

.soon-text span {
    display: inline-block;
    font-family: 'Great Vibes', cursive;
    color: var(--gold-color);
    white-space: nowrap;
    position: relative;
    font-size: 4.5em;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.9),
                 0 0 45px rgba(255, 215, 0, 0.7),
                 0 0 65px rgba(255, 215, 0, 0.5),
                 5px 5px 15px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.8); /* Убрали translateY */
    filter: blur(5px);
    animation: letterPopIn 1s ease-out forwards;
}


.soon-text span:nth-child(1) { animation-delay: 0.3s; }
.soon-text span:nth-child(2) { animation-delay: 0.5s; }
.soon-text span:nth-child(3) { animation-delay: 0.7s; }
.soon-text span:nth-child(4) { animation-delay: 0.9s; }

@keyframes letterPopIn {
    0% { opacity: 0; transform: translateY(20px) scale(0.8) rotate(-5deg); filter: blur(5px); }
    50% { opacity: 0.7; transform: translateY(-5px) scale(1.1) rotate(3deg); filter: blur(2px); }
    100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); filter: blur(0); }
}

/* Футер */
.footer-info {
    font-size: 1.4em;
    color: #444;
    font-weight: 600;
    background: rgba(255,255,255,0.7);
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 40px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
    animation: footerPulse 2s infinite ease-in-out;
}

@keyframes footerPulse {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(255,255,255,0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 15px rgba(255,255,255,0.9); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(255,255,255,0.7); }
}

/* --- Адаптация --- */

/* Планшеты */
@media (max-width: 768px) {
    .container {
        padding: 25px;
        width: 95%;
    }
    .brand-name {
        font-size: 3em;
    }
    .soon-text span {
        font-size: 6em;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.9),
                     0 0 35px rgba(255, 215, 0, 0.7),
                     0 0 55px rgba(255, 215, 0, 0.5),
                     4px 4px 12px rgba(0, 0, 0, 0.4);
    }
    .footer-info {
        font-size: 1.2em;
    }
}

/* === МОБИЛЬНЫЕ ТЕЛЕФОНЫ (КЛЮЧЕВЫЕ ИЗМЕНЕНИЯ ЗДЕСЬ) === */
@media (max-width: 480px) {
    body {
        background: linear-gradient(160deg, #ffc1e3 0%, #f06292 45%, #ec407a 75%, #ffebee 100%);
        box-shadow: inset 0 0 150px rgba(233, 30, 99, 0.6);
    }

    .container {
        padding: 20px;
        max-width: 95%;
        border-radius: 20px;
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.85);
        width: 90%;
    }

    .logo-header {
        margin-bottom: 30px;
    }

    .brand-name {
        font-size: 2.5em;
    }

    .heart-icon-svg path {
        fill: var(--gold-color) !important;
    }

    .main-content {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    /* Центрируем и выравниваем буквы "SOON" */
    .soon-text {
        display: flex;
        justify-content: center;
        align-items: baseline;
        gap: 0.1em;
        text-align: center;
    }

    .soon-text span {
        display: inline-block;
        font-family: 'Great Vibes', cursive;
        color: var(--gold-color);
        font-size: 13vw;
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.7),
                     0 0 15px rgba(255, 215, 0, 0.5),
                     1px 1px 3px rgba(0, 0, 0, 0.3);
        transform: scale(0.8); /* Убрали translateY */
        transform-origin: center;
        opacity: 0;
        filter: blur(5px);
        animation: letterPopInMobile 1s ease-out forwards;
        margin: 0;
    }

    .soon-text span:nth-child(1) { animation-delay: 0.2s; }
    .soon-text span:nth-child(2) { animation-delay: 0.4s; }
    .soon-text span:nth-child(3) { animation-delay: 0.6s; }
    .soon-text span:nth-child(4) { animation-delay: 0.8s; }

    @keyframes letterPopInMobile {
        0%   { opacity: 0; transform: scale(0.7) rotate(-10deg); filter: blur(5px); }
        50%  { opacity: 0.7; transform: scale(1.05) rotate(5deg); filter: blur(2px); }
        100% { opacity: 1; transform: scale(1) rotate(0deg); filter: blur(0); }
    }

    .footer-info {
        font-size: 1em;
        padding: 8px 16px;
        margin-top: 20px;
        animation: none;
    }
}
