
/* ===== ОСНОВНОЙ КОНТЕЙНЕР ===== */
.homeContainer {
    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    padding: 0.5rem 2vw 2rem 2vw;
    gap: 0.5rem;
}

/* ===== ШАПКА ===== */
.pageHeader {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.appHeader {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--background-header);
    border-radius: 30px;
    border-width: 0px;



    box-shadow:
        0 0 40px 30px rgba(255, 248, 234, 0.35),
        0 0 60px 45px rgba(255, 248, 234, 0.28),
        0 0 80px 60px rgba(255, 248, 234, 0.20),
        0 0 100px 75px rgba(255, 248, 234, 0.14),
        0 0 120px 90px rgba(255, 248, 234, 0.10),
        0 0 140px 105px rgba(255, 248, 234, 0.07),
        0 0 160px 120px rgba(255, 248, 234, 0.05);
}
[data-theme="dark"] .appHeader {
    box-shadow:
        0 0 40px 30px rgba(26, 22, 37, 0.35),
        0 0 60px 45px rgba(26, 22, 37, 0.28),
        0 0 80px 60px rgba(26, 22, 37, 0.20),
        0 0 100px 75px rgba(26, 22, 37, 0.14),
        0 0 120px 90px rgba(26, 22, 37, 0.10),
        0 0 140px 105px rgba(26, 22, 37, 0.07),
        0 0 160px 120px rgba(26, 22, 37, 0.05);
}


.appLogo {
    height: 8rem;
    width: auto;
    max-width: 40vw;
}

.appTitle {
    font-size: 5rem;
    letter-spacing: 0.12em;
    white-space: nowrap;

    background: linear-gradient(var(--grad-angle), var(--grad-purple) 30%, var(--grad-orange) 70%);
    background-size: 200% 100%;
    background-position: 50% 50%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    animation:
        gradientShift 5s linear infinite alternate;
}

@keyframes gradientShift {
    0% { background-position:50% 50%; }
    100% { background-position: 50% 100%; }
}
