.auth-main {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.auth-page {
    position: relative;
    z-index: 8;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

.auth-hero {
    position: relative;
    text-align: center;
    padding-top: 0.6rem;
    margin-bottom: 2.4rem;
}

.auth-hero-glow {
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    width: min(100%, 980px);
    height: 190px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 50%,
            rgba(255,255,255,0.06) 0%,
            rgba(220,228,236,0.035) 35%,
            rgba(255,255,255,0.012) 52%,
            transparent 74%);
    filter: blur(24px);
    pointer-events: none;
    z-index: 0;
}

.auth-title-wrap {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
}

.auth-title {
    position: relative;
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.3rem, 7vw, 6.8rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 0.96;
    color: #f8fbff;
    text-shadow:
        0 0 14px rgba(255,255,255,0.08),
        0 0 28px rgba(215,225,235,0.08);
}

.auth-title::before {
    content: attr(data-shadow);
    position: absolute;
    inset: 0;
    color: rgba(218, 226, 235, 0.16);
    transform: translate(2px, 3px);
    filter: blur(7px);
    z-index: -1;
}

.auth-role {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.78rem 1.35rem;
    border-radius: 999px;
    border: 1px solid rgba(233, 238, 244, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(36, 40, 46, 0.42) 0%,
            rgba(14, 16, 20, 0.58) 100%
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 10px 24px rgba(0,0,0,0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.auth-role-label,
.auth-role-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.auth-role-label {
    color: rgba(225,230,236,0.62);
}

.auth-role-value {
    color: #f5f8fb;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(255,255,255,0.1);
}

.auth-role-diamond {
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    border-radius: 1px;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.94),
            rgba(208,218,228,0.48)
        );
    box-shadow:
        0 0 8px rgba(255,255,255,0.2),
        0 0 14px rgba(220,228,236,0.08);
}

.auth-view {
    display: none;
}

.auth-view.is-active {
    display: block;
}

.auth-shell {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(248, 251, 255, 0.08) 0%,
            rgba(212, 220, 230, 0.05) 14%,
            rgba(42, 46, 54, 0.14) 34%,
            rgba(12, 14, 18, 0.62) 58%,
            rgba(205, 214, 223, 0.06) 100%
        );
    border: 1px solid rgba(232, 238, 245, 0.15);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.07),
        inset 0 -1px 0 rgba(0,0,0,0.22),
        0 22px 44px rgba(0,0,0,0.28),
        0 0 30px rgba(220,230,240,0.05);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.auth-shell::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 33px;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.06) 0%,
            rgba(255,255,255,0.02) 18%,
            transparent 38%,
            transparent 62%,
            rgba(255,255,255,0.025) 100%
        );
    pointer-events: none;
}

.auth-shell::after {
    content: "";
    position: absolute;
    inset: 11px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.045);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.01),
        0 0 14px rgba(255,255,255,0.012);
    pointer-events: none;
}

.auth-form {
    position: relative;
    z-index: 2;
    padding: 2.2rem;
}

.section-caption {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.1rem;
}

.section-caption-diamond {
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border-radius: 1px;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.94),
            rgba(210,220,230,0.48)
        );
    box-shadow:
        0 0 8px rgba(255,255,255,0.15),
        0 0 14px rgba(220,228,236,0.05);
}

.section-caption-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(230,236,242,0.76);
}

.auth-grid-top {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.auth-grid-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 2rem;
    align-items: start;
}

.auth-panel {
    position: relative;
    min-height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(248, 251, 255, 0.11) 0%,
            rgba(214, 223, 233, 0.07) 16%,
            rgba(46, 51, 58, 0.18) 35%,
            rgba(16, 18, 22, 0.62) 64%,
            rgba(210, 219, 229, 0.08) 100%
        );
    border: 1px solid rgba(232, 238, 245, 0.14);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.07),
        inset 0 -1px 0 rgba(0,0,0,0.18),
        0 18px 34px rgba(0,0,0,0.22),
        0 0 20px rgba(220,230,240,0.04);
}

.auth-panel::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 25px;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.055) 0%,
            rgba(255,255,255,0.018) 18%,
            transparent 38%,
            transparent 62%,
            rgba(255,255,255,0.025) 100%
        );
    pointer-events: none;
}

.auth-panel::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.01),
        0 0 12px rgba(255,255,255,0.015);
    pointer-events: none;
}

.auth-panel-inner {
    position: relative;
    z-index: 2;
    padding: 1.55rem;
    height: 100%;
}

/* PHOTO */
.photo-panel {
    display: flex;
    flex-direction: column;
}

.photo-dropzone {
    position: relative;
    min-height: 420px;
    border-radius: 22px;
    border: 1px dashed rgba(233, 239, 245, 0.16);
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.05), transparent 55%),
        linear-gradient(
            180deg,
            rgba(26, 29, 34, 0.56) 0%,
            rgba(10, 12, 16, 0.72) 100%
        );
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 12px 26px rgba(0,0,0,0.18);
}

.photo-dropzone::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.035);
    pointer-events: none;
}

.photo-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.photo-placeholder {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 220px;
    text-align: center;
    padding: 1rem;
}

.photo-placeholder-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.09), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 0 18px rgba(220,228,236,0.04);
    font-size: 2rem;
    color: #f8fbff;
    text-shadow:
        0 0 10px rgba(255,255,255,0.28),
        0 0 18px rgba(220,228,236,0.1);
}

.photo-placeholder-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.45rem;
    letter-spacing: 0.08em;
    color: #f6f9fc;
    margin-bottom: 0.35rem;
}

.photo-placeholder-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(225,230,236,0.66);
}

.upload-actions {
    margin-top: 1.1rem;
}

.upload-input {
    display: none;
}

.upload-trigger {
    width: 100%;
}

.upload-trigger .btn-text {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

/* FIELDS */
.data-panel-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.field-group.full {
    grid-column: 1 / -1;
}

.field-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(228,234,240,0.72);
    padding-left: 0.2rem;
}

.lux-input,
.lux-textarea {
    width: 100%;
    border: 1px solid rgba(228,233,240,0.13);
    background:
        linear-gradient(
            180deg,
            rgba(36, 40, 46, 0.42) 0%,
            rgba(14, 16, 20, 0.58) 100%
        );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    outline: none;
    color: #f1f5f9;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    font-weight: 500;
    transition:
        border-color 0.24s ease,
        box-shadow 0.24s ease,
        transform 0.24s ease;
    box-shadow:
        0 8px 22px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.05),
        inset 0 -1px 0 rgba(0,0,0,0.12);
}

.lux-input {
    height: 56px;
    padding: 0 1rem;
}

.lux-textarea {
    min-height: 240px;
    resize: vertical;
    padding: 1rem;
    line-height: 1.7;
}

.lux-textarea-mid {
    min-height: 180px;
}

.lux-input::placeholder,
.lux-textarea::placeholder {
    color: rgba(223,230,236,0.38);
}

.lux-input:focus,
.lux-textarea:focus {
    border-color: rgba(245,248,252,0.28);
    box-shadow:
        0 12px 28px rgba(0,0,0,0.24),
        0 0 20px rgba(210,220,232,0.08),
        inset 0 1px 0 rgba(255,255,255,0.07);
    transform: translateY(-1px);
}

/* DIVIDER + NOTICE */
.auth-divider-wrap {
    margin: 2.2rem 0;
}

.auth-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.auth-divider-line {
    flex: 1;
    max-width: 320px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,255,255,0.12) 18%,
            rgba(225,230,236,0.78) 50%,
            rgba(255,255,255,0.12) 82%,
            transparent 100%
        );
    box-shadow:
        0 0 10px rgba(255,255,255,0.08),
        0 0 18px rgba(210,220,230,0.05);
}

.auth-divider-center {
    width: 9px;
    height: 9px;
    transform: rotate(45deg);
    border-radius: 1px;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.95),
            rgba(208,218,228,0.52)
        );
    box-shadow:
        0 0 9px rgba(255,255,255,0.16),
        0 0 16px rgba(220,228,236,0.06);
    flex-shrink: 0;
}

.info-notice-panel {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(248, 251, 255, 0.09) 0%,
            rgba(214, 223, 233, 0.06) 16%,
            rgba(32, 36, 42, 0.2) 40%,
            rgba(12, 14, 18, 0.62) 72%,
            rgba(210, 219, 229, 0.07) 100%
        );
    border: 1px solid rgba(232, 238, 245, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 16px 30px rgba(0,0,0,0.2),
        0 0 20px rgba(220,230,240,0.04);
}

.info-notice-panel::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 21px;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.05) 0%,
            rgba(255,255,255,0.014) 20%,
            transparent 46%,
            transparent 100%
        );
    pointer-events: none;
}

.info-notice-inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.2rem 1.3rem;
}

.info-notice-badge {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    color: #f7fbff;
    font-size: 1.3rem;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 0 18px rgba(220,228,236,0.04);
}

.info-notice-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.08em;
    color: #f8fbff;
    margin-bottom: 0.2rem;
}

.info-notice-text {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(228,234,240,0.76);
}

/* NICHES */
.niche-panel-inner {
    display: flex;
    flex-direction: column;
}

.niche-panel-stack {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: 100%;
}

.niche-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.niche-item {
    position: relative;
}

.niche-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.niche-chip {
    position: relative;
    width: 100%;
    min-height: 58px;
    border: 1px solid rgba(228,233,240,0.12);
    background:
        linear-gradient(
            180deg,
            rgba(36, 40, 46, 0.42) 0%,
            rgba(14, 16, 20, 0.58) 100%
        );
    border-radius: 16px;
    padding: 0.9rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
    box-shadow:
        0 8px 22px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.05),
        inset 0 -1px 0 rgba(0,0,0,0.12);
}

.niche-chip::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.06) 0%,
            rgba(255,255,255,0.015) 18%,
            transparent 45%,
            transparent 100%
        );
    pointer-events: none;
}

.niche-chip-text {
    position: relative;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(238,243,248,0.84);
    line-height: 1.3;
}

.niche-item input:checked + .niche-chip {
    transform: translateY(-1px);
    border-color: rgba(245,248,252,0.28);
    box-shadow:
        0 12px 28px rgba(0,0,0,0.24),
        0 0 20px rgba(210,220,232,0.08),
        inset 0 1px 0 rgba(255,255,255,0.07);
}

.niche-item input:checked + .niche-chip .niche-chip-text {
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(255,255,255,0.22),
        0 0 18px rgba(220,228,236,0.08);
}

/* FILES */
.media-request {
    border-radius: 22px;
    padding: 1.25rem 1.2rem;
    border: 1px solid rgba(232, 238, 245, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(30, 34, 40, 0.48) 0%,
            rgba(12, 14, 18, 0.64) 100%
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 12px 24px rgba(0,0,0,0.16);
}

.media-caption {
    margin-bottom: 0.8rem;
}

.media-request-text {
    margin: 0 0 1rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.94rem;
    line-height: 1.7;
    color: rgba(231,236,241,0.8);
}

.media-upload-button {
    width: 100%;
    margin-bottom: 1rem;
}

.media-files {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.media-files-empty {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.86rem;
    line-height: 1.6;
    color: rgba(220,226,232,0.48);
}

.media-file-item {
    border-radius: 14px;
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(228,233,240,0.1);
    background:
        linear-gradient(
            180deg,
            rgba(36, 40, 46, 0.36) 0%,
            rgba(14, 16, 20, 0.5) 100%
        );
    font-family: 'Montserrat', sans-serif;
    font-size: 0.86rem;
    color: rgba(238,243,248,0.82);
    word-break: break-word;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 8px 20px rgba(0,0,0,0.14);
}

.submit-row {
    display: flex;
    justify-content: center;
    margin-top: 2.2rem;
}

.submit-button {
    min-width: 320px;
    height: 58px;
    padding: 0 2rem;
    border-radius: 18px;
}

.submit-button .btn-text {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.switch-row {
    display: flex;
    justify-content: center;
    margin-top: 1.35rem;
}

.switch-link {
    border: none;
    background: transparent;
    color: rgba(228,234,240,0.68);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.96rem;
    font-weight: 500;
    line-height: 1.6;
    cursor: pointer;
    transition: color 0.24s ease, text-shadow 0.24s ease, transform 0.24s ease;
}

.switch-link span {
    color: #f7fbff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.switch-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
    text-shadow:
        0 0 10px rgba(255,255,255,0.18),
        0 0 18px rgba(220,228,236,0.08);
}

/* ==================== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ auth-manager.html ==================== */

/* Стили для декоративной цепи (как в auth-model) */
.auth-decor-chain {
    position: absolute;
    top: -30px;
    right: 0;
    width: 160px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
    filter:
        drop-shadow(0 0 10px rgba(255,255,255,0.12))
        drop-shadow(0 0 20px rgba(220,228,236,0.06));
    transform: translateX(20%);
}

.chain-sparks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.spark {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: white;
    opacity: 0;
    box-shadow:
        0 0 6px rgba(255,255,255,0.9),
        0 0 14px rgba(220,228,236,0.6),
        0 0 28px rgba(220,228,236,0.3);
    animation: sparkFlash 1.6s ease-out forwards;
}

.spark.big {
    width: 5px;
    height: 5px;
    box-shadow:
        0 0 10px rgba(255,255,255,1),
        0 0 22px rgba(220,228,236,0.8),
        0 0 40px rgba(220,228,236,0.4);
}

@keyframes sparkFlash {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    20% {
        opacity: 1;
        transform: scale(1);
    }
    60% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

/* Стили для photo-placeholder-icon с изображением */
.photo-placeholder-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 0 16px rgba(220,228,236,0.04);
    overflow: hidden;
}

.photo-placeholder-icon img {
    width: 42px;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 0 6px rgba(255,255,255,0.18))
        drop-shadow(0 0 12px rgba(220,228,236,0.08));
    opacity: 0.95;
    transition: transform 0.3s ease, filter 0.3s ease;
    animation: crownFloat 4.2s ease-in-out infinite;
}

@keyframes crownFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

.photo-dropzone:hover .photo-placeholder-icon img {
    transform: scale(1.05);
    filter:
        drop-shadow(0 0 10px rgba(255,255,255,0.25))
        drop-shadow(0 0 18px rgba(220,228,236,0.12));
}

/* Стили для обертки info-notice с боковыми картинками */
.info-notice-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.info-notice-side {
    width: 120px;
    height: auto;
    flex-shrink: 0;
    opacity: 0.85;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.1));
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.info-notice-side:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.left-side {
    animation: sideFloatLeft 4s ease-in-out infinite;
}

.right-side {
    animation: sideFloatRight 4s ease-in-out infinite;
}

@keyframes sideFloatLeft {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-3px) translateY(-2px);
    }
}

@keyframes sideFloatRight {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(3px) translateY(-2px);
    }
}

/* Стили для info-notice-badge с изображением */
.info-notice-badge {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 0 18px rgba(220,228,236,0.04);
    overflow: hidden;
}

.info-notice-badge img {
    width: 32px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.2));
    transition: transform 0.25s ease, filter 0.25s ease;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 6px rgba(255,255,255,0.15));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 12px rgba(255,255,255,0.3));
    }
}

.info-notice-panel:hover .info-notice-badge img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 14px rgba(255,255,255,0.4));
}

/* =========================================
   FIXED FULLSCREEN PANTHER BACKGROUND (ВИДЕО)
========================================= */

html,
body {
    min-height: 100%;
}

body {
    position: relative;
    background: #000;
}

.panther-fixed-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Стили для видео */
.panther-fixed {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 42vw;
    max-width: 760px;
    min-width: 320px;
    object-fit: contain;
    object-position: center bottom;
    opacity: 0.9;
    filter: brightness(0.92) contrast(1.04);
    pointer-events: none;
}

.panther-fixed-left {
    left: -130px;
    object-position: left bottom;
}

.panther-fixed-right {
    right: -120px;
    object-position: right bottom;
}

.panther-fixed-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.38) 0%,
            rgba(0,0,0,0.14) 18%,
            rgba(0,0,0,0.08) 32%,
            rgba(0,0,0,0.08) 68%,
            rgba(0,0,0,0.14) 82%,
            rgba(0,0,0,0.38) 100%
        ),
        radial-gradient(
            circle at center,
            rgba(0,0,0,0.08) 0%,
            rgba(0,0,0,0.28) 58%,
            rgba(0,0,0,0.62) 100%
        );
}

/* весь сайт поверх фиксированного фона */
.site-wrapper {
    position: relative;
    z-index: 2;
}

/* контейнер с формой оставляем поверх */
.auth-page {
    position: relative;
    z-index: 8;
}

/* чтобы внутренние декоративные слои не спорили с фоном */
.auth-page::before,
.auth-page::after {
    z-index: 0;
}