* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e);
    color: #e6e6e6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    line-height: 1.6;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
}

.music-player {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(10, 15, 30, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 182, 193, 0.2);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.music-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 182, 193, 0.2);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.control-btn {
    background: rgba(255, 182, 193, 0.1);
    border: 1px solid rgba(255, 182, 193, 0.3);
    color: #FFC0CB;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.control-btn:hover {
    background: rgba(255, 182, 193, 0.2);
    transform: scale(1.1);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 5px;
}

#volume-slider {
    -webkit-appearance: none;
    width: 80px;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    outline: none;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #FFB6C1;
    cursor: pointer;
}

#volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #FFB6C1;
    cursor: pointer;
    border: none;
}

.track-info {
    font-size: 0.8rem;
    color: #FFB6C1;
    margin-left: 5px;
}

header {
    margin-bottom: 50px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 182, 193, 0.3);
    position: relative;
    overflow: hidden;
}

header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFB6C1, transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 182, 193, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(255, 182, 193, 0.5); }
    to { text-shadow: 
            0 0 20px rgba(255, 182, 193, 0.8), 
            0 0 30px rgba(255, 182, 193, 0.6); 
       }
}

.subtitle {
    color: #FFB6C1;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 182, 193, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 182, 193, 0.2);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.2);
}

.online-count {
    font-weight: bold;
    color: #FFB6C1;
    display: inline-block;
    min-width: 30px;
    text-align: center;
}

.content {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.95fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 36px;
}

.info-block {
    margin-bottom: 40px;
    background: rgba(10, 15, 30, 0.6);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 182, 193, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.profile-grid .info-block {
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-block__content {
    flex: 1 1 auto;
}

.info-block__footer {
    margin-top: auto;
    padding-top: 16px;
}

.info-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 182, 193, 0.06);
    border: 1px solid rgba(255, 182, 193, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.info-meta__label {
    color: rgba(255, 182, 193, 0.82);
    font-size: 0.98rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.info-meta__value {
    color: #fff3fa;
    font-size: 0.98rem;
    font-weight: 600;
}

.discord-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(12, 17, 33, 0.92), rgba(18, 11, 31, 0.88));
    border: 1px solid rgba(255, 182, 193, 0.14);
    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.discord-card::before {
    content: none;
}

.discord-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 15px 30px rgba(255, 182, 193, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 182, 193, 0.3);
}

.discord-card__header,
.discord-card__profile,
.discord-card__footer {
    position: relative;
    z-index: 1;
}

.discord-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.discord-card__eyebrow,
.discord-card__label {
    color: rgba(255, 182, 193, 0.88);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.discord-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(52, 58, 86, 0.42);
    color: #eef1ff;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.discord-status-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
}

.discord-card__profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.discord-avatar-wrap {
    position: relative;
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    overflow: hidden;
    border-radius: 24px;
}

.discord-avatar-wrap::after {
    content: '';
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(12, 17, 33, 0.98);
    background: #8f95a4;
    box-shadow: 0 0 16px rgba(143, 149, 164, 0.45);
}

.discord-avatar,
.discord-avatar-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 182, 193, 0.22);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 182, 193, 0.08);
}

.discord-avatar {
    object-fit: cover;
    background: rgba(255, 255, 255, 0.05);
}

.discord-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 145, 0.88), rgba(115, 88, 255, 0.82));
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.discord-avatar[hidden],
.discord-avatar-fallback[hidden] {
    display: none !important;
}

.discord-card__identity {
    min-width: 0;
}

.discord-display-name {
    color: #fff4fb;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    word-break: break-word;
}

.discord-username {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.95rem;
}

.discord-card__activity {
    position: relative;
    z-index: 1;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 182, 193, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.discord-card__label {
    display: inline-block;
    margin-bottom: 10px;
}

.discord-activity-title {
    color: #fff6fc;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.4;
}

.discord-activity-subtitle {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
    line-height: 1.5;
    min-height: 44px;
}

.discord-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 16px;
}

.discord-chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 182, 193, 0.12);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.86rem;
}

.discord-card__timestamp {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.82rem;
}

.discord-status-badge.is-online {
    color: #86f0ad;
    background: rgba(87, 242, 135, 0.14);
    border-color: rgba(87, 242, 135, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 18px rgba(87, 242, 135, 0.12);
}

.discord-status-badge.is-idle {
    color: #f3d166;
    background: rgba(240, 178, 50, 0.14);
    border-color: rgba(240, 178, 50, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 18px rgba(240, 178, 50, 0.1);
}

.discord-status-badge.is-dnd {
    color: #ff7b92;
    background: rgba(237, 66, 69, 0.14);
    border-color: rgba(237, 66, 69, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 18px rgba(237, 66, 69, 0.1);
}

.discord-status-badge.is-offline,
.discord-status-badge.is-loading {
    color: #eef1ff;
    background: rgba(96, 106, 134, 0.34);
    border-color: rgba(162, 172, 202, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 14px rgba(162, 172, 202, 0.06);
}

.discord-avatar-wrap.is-online::after {
    background: #57f287;
    box-shadow: 0 0 16px rgba(87, 242, 135, 0.6);
}

.discord-avatar-wrap.is-idle::after {
    background: #f0b232;
    box-shadow: 0 0 16px rgba(240, 178, 50, 0.55);
}

.discord-avatar-wrap.is-dnd::after {
    background: #ed4245;
    box-shadow: 0 0 16px rgba(237, 66, 69, 0.55);
}

.discord-avatar-wrap.is-offline::after,
.discord-avatar-wrap.is-loading::after {
    background: #747f98;
    box-shadow: 0 0 16px rgba(116, 127, 152, 0.45);
}

.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.label {
    color: #FFB6C1;
    margin-bottom: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.label::before {
    content: "▶";
    margin-right: 10px;
    font-size: 0.8rem;
    color: #FFB6C1;
}

.value {
    margin-left: 25px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.friends-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.friend-tag {
    background: linear-gradient(45deg, #ff6b6b, #c44569, #8e44ad);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(142, 68, 173, 0.3);
    position: relative;
    overflow: hidden;
}

.friend-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.friend-tag:hover::before {
    left: 100%;
}

.friend-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.5);
}

.message {
    font-style: italic;
    margin: 40px 0;
    padding: 25px;
    border-left: 4px solid #FFB6C1;
    background: rgba(255, 182, 193, 0.05);
    border-radius: 0 10px 10px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.message::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 200, 0.1), transparent);
    transform: translateX(-100%);
    animation: shine 5s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.signature {
    margin-top: 60px;
    text-align: right;
    font-size: 1.2rem;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.signature div {
    margin-bottom: 8px;
    text-shadow: 0 0 5px rgba(255, 182, 193, 0.5);
}

.contact-info {
    margin-top: 60px;
    text-align: center;
    font-size: 1rem;
    color: #FFB6C1;
    opacity: 0;
    animation: fadeIn 1s forwards 2s;
}

.pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #FFB6C1;
    border-radius: 50%;
    margin-left: 5px;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 10px #FFB6C1;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 1; }
    70% { transform: scale(1.5); opacity: 0.7; }
    100% { transform: scale(0.8); opacity: 1; }
}

footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 182, 193, 0.2);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    animation: fadeIn 1s forwards 2.5s;
}

/* ===============================
   🌸 SAKURA (WIND + PETALS)
================================ */

.snowflakes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

/* Лепестки сакуры */
.snowflake {
    position: absolute;
    top: -10%;
    pointer-events: none;
    font-size: 1em;
    opacity: 0.85;

    animation-name: sakuraFall, sakuraWind;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: 1, infinite;
}

/* Падение вниз */
@keyframes sakuraFall {
    to {
        transform: translateY(120vh) rotate(360deg);
        opacity: 0;
    }
}

/* Ветер (влево/вправо) */
@keyframes sakuraWind {
    0%   { margin-left: 0; }
    50%  { margin-left: 60px; }
    100% { margin-left: 0; }
}


@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 1.8rem;
    }
    
    .info-block {
        padding: 20px;
    }

    .discord-card {
        padding: 20px;
    }

    .discord-card__profile {
        align-items: flex-start;
    }
    
    .friends-list {
        gap: 8px;
    }
    
    .friend-tag {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
    
    .stats {
        gap: 10px;
    }
    
    .music-player {
        top: 10px;
        right: 10px;
        padding: 10px;
    }
    
    .player-controls {
        gap: 8px;
    }
    
    .track-info {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .profile-grid {
        gap: 18px;
    }

    h1 {
        font-size: 1.5rem;
    }
    
    .value {
        font-size: 1rem;
    }

    .discord-card {
        padding: 18px;
    }

    .discord-card__header,
    .discord-card__footer,
    .discord-card__profile {
        flex-direction: column;
        align-items: flex-start;
    }

    .discord-avatar-wrap {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
    }
    
    .message {
        padding: 15px;
    }
    
    .music-player {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
}

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
    cursor: pointer;
    transition: opacity 1s ease;
}

.splash-content {
    text-align: center;
    animation: splashFadeIn 1.5s ease-out;
}

.splash-title {
    font-size: 5rem;
    color: #FFB6C1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 182, 193, 0.8);
    letter-spacing: 12px;
    font-weight: 300;
    animation: splashGlow 3s ease-in-out infinite alternate;
    transform-origin: center;
    transition: all 0.8s ease;
}

.splash-subtitle {
    color: rgba(255, 182, 193, 0.7);
    font-size: 1.1rem;
    letter-spacing: 3px;
    animation: subtitlePulse 2s ease-in-out infinite;
    margin-top: 20px;
}

.splash-subtitle.is-loading {
    letter-spacing: 2.4px;
    color: rgba(255, 205, 220, 0.9);
}

@keyframes splashFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes splashGlow {
    0% {
        text-shadow: 0 0 20px rgba(255, 182, 193, 0.6),
                     0 0 30px rgba(255, 182, 193, 0.4),
                     0 0 40px rgba(255, 182, 193, 0.2);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 25px rgba(255, 182, 193, 0.8),
                     0 0 40px rgba(255, 182, 193, 0.6),
                     0 0 60px rgba(255, 182, 193, 0.4);
        transform: scale(1.02);
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 182, 193, 0.6),
                     0 0 30px rgba(255, 182, 193, 0.4),
                     0 0 40px rgba(255, 182, 193, 0.2);
        transform: scale(1);
    }
}

@keyframes subtitlePulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.splash-exit {
    opacity: 0;
    pointer-events: none;
}

.splash-title-exit {
    opacity: 0;
}

.message {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.message::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 182, 193, 0.1), transparent);
    transition: left 0.6s ease;
}

.message:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 30px rgba(255, 182, 193, 0.25),
        0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 4px solid rgba(255, 182, 193, 0.7);
    background: rgba(255, 182, 193, 0.08);
}

.message:hover::before {
    left: 100%;
}

.info-block {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.info-block:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 30px rgba(255, 182, 193, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 182, 193, 0.3);
}

.friend-tag {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.friend-tag:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 8px 20px rgba(142, 68, 173, 0.4),
        0 3px 10px rgba(0, 0, 0, 0.2);
}

.message:hover {
    animation: textGlow 1.5s ease-in-out;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 182, 193, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 182, 193, 0.6),
                     0 0 25px rgba(255, 182, 193, 0.4);
    }
}

.info-block, .friend-tag, .message, .stat-item, .music-player {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trail {
    position: fixed;
    pointer-events: none;
    transition: transform 0.6s ease, opacity 0.6s ease;
    color: #FFB6C1;
    text-shadow: 0 0 8px #FFB6C1, 0 0 16px #FFB6C1;
    z-index: 9999;
    user-select: none;
}

/* ===== KUROCHKA PAGE ===== */
body.page-kurochka * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.page-kurochka {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a0e2e, #2d1b4e, #1e1440);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    color: #FFB6C1;
    position: relative;
}

body.page-kurochka .stars,
body.page-kurochka .stars2,
body.page-kurochka .stars3 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

body.page-kurochka .stars {
    background:
        radial-gradient(2px 2px at 20px 30px, #FFB6C1, transparent),
        radial-gradient(2px 2px at 60px 70px, #FFB6C1, transparent),
        radial-gradient(1px 1px at 50px 50px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, #fff, transparent),
        radial-gradient(2px 2px at 90px 10px, #FFB6C1, transparent);
    background-size: 200px 200px;
    animation: kurochka-stars-move 60s linear infinite;
    opacity: 0.6;
}

body.page-kurochka .stars2 {
    background:
        radial-gradient(1px 1px at 40px 60px, #FFB6C1, transparent),
        radial-gradient(1px 1px at 110px 90px, #fff, transparent),
        radial-gradient(2px 2px at 150px 30px, #FFB6C1, transparent);
    background-size: 250px 250px;
    animation: kurochka-stars-move 80s linear infinite;
    opacity: 0.4;
}

body.page-kurochka .stars3 {
    background:
        radial-gradient(1px 1px at 70px 40px, #fff, transparent),
        radial-gradient(2px 2px at 160px 120px, #FFB6C1, transparent),
        radial-gradient(1px 1px at 200px 180px, #FFB6C1, transparent);
    background-size: 300px 300px;
    animation: kurochka-stars-move 100s linear infinite;
    opacity: 0.3;
}

@keyframes kurochka-stars-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(-1000px); }
}

body.page-kurochka .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 90%;
    padding: 60px 40px;
    background: rgba(15, 10, 30, 0.7);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 32px rgba(255, 182, 193, 0.2),
        0 0 100px rgba(255, 182, 193, 0.1),
        inset 0 0 60px rgba(255, 182, 193, 0.05);
    border: 1px solid rgba(255, 182, 193, 0.2);
    animation: kurochka-container-appear 1s ease-out;
}

@keyframes kurochka-container-appear {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

body.page-kurochka .header-section {
    text-align: center;
    margin-bottom: 50px;
}

body.page-kurochka .emoji-animation {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: kurochka-emoji-float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 182, 193, 0.5));
}

@keyframes kurochka-emoji-float {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

body.page-kurochka .main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFB6C1;
    margin-bottom: 20px;
    text-shadow:
        0 0 20px rgba(255, 182, 193, 0.8),
        0 0 40px rgba(255, 182, 193, 0.5),
        0 0 60px rgba(255, 182, 193, 0.3);
    animation: kurochka-title-glow 3s ease-in-out infinite;
    letter-spacing: 2px;
}

@keyframes kurochka-title-glow {
    0%, 100% {
        text-shadow:
            0 0 20px rgba(255, 182, 193, 0.8),
            0 0 40px rgba(255, 182, 193, 0.5),
            0 0 60px rgba(255, 182, 193, 0.3);
    }
    50% {
        text-shadow:
            0 0 30px rgba(255, 182, 193, 1),
            0 0 60px rgba(255, 182, 193, 0.7),
            0 0 90px rgba(255, 182, 193, 0.5);
    }
}

body.page-kurochka .subtitle {
    font-size: 1.4rem;
    color: rgba(255, 182, 193, 0.8);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

body.page-kurochka .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

body.page-kurochka .gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 182, 193, 0.2);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 182, 193, 0.3);
    background: rgba(20, 15, 40, 0.5);
}

body.page-kurochka .gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(255, 182, 193, 0.5);
    border-color: rgba(255, 182, 193, 0.6);
}

body.page-kurochka .gallery-item img,
body.page-kurochka .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

body.page-kurochka .gallery-item:hover img,
body.page-kurochka .gallery-item:hover video {
    transform: scale(1.1);
}

body.page-kurochka .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.8), rgba(138, 43, 226, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

body.page-kurochka .gallery-item:hover .overlay {
    opacity: 1;
}

body.page-kurochka .video-item .overlay {
    display: none;
}

body.page-kurochka .video-item video {
    object-fit: contain;
    background: #000;
}

body.page-kurochka .btn {
    position: relative;
    display: inline-block;
    padding: 18px 50px;
    border-radius: 50px;
    border: 3px solid #FFB6C1;
    color: #FFB6C1;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    overflow: hidden;
    background: rgba(255, 182, 193, 0.1);
    box-shadow:
        0 0 20px rgba(255, 182, 193, 0.3),
        inset 0 0 20px rgba(255, 182, 193, 0.1);
}

body.page-kurochka .btn span {
    position: relative;
    z-index: 2;
}

body.page-kurochka .btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.6), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 1;
}

body.page-kurochka .btn:hover {
    background: rgba(255, 182, 193, 0.3);
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 10px 40px rgba(255, 182, 193, 0.5),
        0 0 60px rgba(255, 182, 193, 0.4),
        inset 0 0 30px rgba(255, 182, 193, 0.2);
    border-color: #fff;
    color: #fff;
}

body.page-kurochka .btn:hover .btn-glow {
    width: 300px;
    height: 300px;
}

body.page-kurochka .btn:active {
    transform: translateY(-2px) scale(1.02);
}

@media (max-width: 768px) {
    body.page-kurochka .container {
        padding: 40px 25px;
    }

    body.page-kurochka .main-title {
        font-size: 2.5rem;
    }

    body.page-kurochka .emoji-animation {
        font-size: 3rem;
    }

    body.page-kurochka .subtitle {
        font-size: 1.1rem;
    }

    body.page-kurochka .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    body.page-kurochka .btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body.page-kurochka .main-title {
        font-size: 2rem;
    }

    body.page-kurochka .emoji-animation {
        font-size: 2.5rem;
    }

    body.page-kurochka .gallery {
        grid-template-columns: 1fr;
    }
}

/* ===== ERROR PAGES ===== */
body.page-error * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body.page-error {
    height: 100vh;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: rgba(255, 182, 193, 1);
    text-align: center;
    position: relative;
}

body.page-error::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(rgba(255, 182, 193, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: error-stars 50s linear infinite;
    z-index: 0;
}

@keyframes error-stars {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50%, -50%); }
}

body.page-error .error-box {
    position: relative;
    z-index: 1;
    background: rgba(10, 15, 30, 0.85);
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow:
        0 0 40px rgba(255, 182, 193, 0.4),
        0 0 80px rgba(255, 182, 193, 0.2);
    backdrop-filter: blur(5px);
    animation: error-fade-in 1.2s ease-out forwards;
}

@keyframes error-fade-in {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

body.page-error .error-code {
    font-size: 8rem;
    font-weight: bold;
    color: rgba(255, 182, 193, 1);
    text-shadow:
        0 0 20px rgba(255, 182, 193, 1),
        0 0 40px rgba(255, 182, 193, 1),
        0 0 60px rgba(255, 182, 193, 1);
    margin-bottom: 15px;
}

body.page-error .cat {
    font-size: 5rem;
    animation: error-float 3s ease-in-out infinite;
    margin-bottom: 20px;
    display: inline-block;
}

@keyframes error-float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

body.page-error p {
    font-size: 1.3rem;
    color: rgba(255, 182, 193, 0.7);
    margin-bottom: 30px;
    line-height: 1.5;
}

body.page-error .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    border: 2px solid rgba(255, 182, 193, 0.7);
    color: rgba(255, 182, 193, 1);
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.3s ease;
    backdrop-filter: blur(2px);
}

body.page-error .btn:hover {
    background: rgba(255, 182, 193, 0.2);
    transform: scale(1.1) rotate(-2deg);
    box-shadow:
        0 0 20px rgba(255, 182, 193, 1),
        0 0 40px rgba(255, 182, 193, 1);
}

/* ===== KUROCHKA ULTRA PAGE ===== */
body.page-kurochka-ultra {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: block;
    color: #fcecff;
    background:
        radial-gradient(circle at 15% -10%, rgba(255, 122, 0, 0.25), transparent 45%),
        radial-gradient(circle at 88% 0%, rgba(255, 0, 140, 0.2), transparent 40%),
        linear-gradient(140deg, #130b27 0%, #1d1140 52%, #111c31 100%);
    position: relative;
    overflow-x: hidden;
}

body.page-kurochka-ultra * {
    box-sizing: border-box;
}

body.page-kurochka-ultra .decor {
    position: fixed;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
    animation: kurochkaUltraFloat 12s ease-in-out infinite;
}

body.page-kurochka-ultra .decor--one {
    top: -120px;
    left: -100px;
    background: rgba(255, 107, 107, 0.85);
}

body.page-kurochka-ultra .decor--two {
    top: 16%;
    right: -130px;
    background: rgba(255, 168, 0, 0.8);
    animation-delay: 1.6s;
}

body.page-kurochka-ultra .decor--three {
    bottom: -120px;
    left: 28%;
    background: rgba(123, 97, 255, 0.75);
    animation-delay: 3.2s;
}

@keyframes kurochkaUltraFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.08); }
}

body.page-kurochka-ultra .site-wrap {
    width: min(1200px, 92vw);
    margin: 38px auto 56px;
    position: relative;
    z-index: 1;
}

body.page-kurochka-ultra .hero {
    padding: 34px;
    border-radius: 26px;
    background: rgba(14, 13, 30, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(7px);
}

body.page-kurochka-ultra .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    color: #ffe8f8;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.92rem;
}

body.page-kurochka-ultra .hero__title {
    margin-top: 16px;
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 4.8vw, 3rem);
    line-height: 1.1;
    font-weight: 700;
    color: #fff3fd;
    text-transform: none;
    letter-spacing: 0.4px;
    animation: none;
    text-shadow: 0 6px 28px rgba(255, 102, 204, 0.2);
}

body.page-kurochka-ultra .hero__subtitle {
    max-width: 760px;
    color: rgba(255, 235, 255, 0.86);
    font-size: 1.02rem;
    margin-bottom: 18px;
}

body.page-kurochka-ultra .hero__stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

body.page-kurochka-ultra .stat-pill {
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.9rem;
}

body.page-kurochka-ultra .hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

body.page-kurochka-ultra .hero-btn {
    padding: 11px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.page-kurochka-ultra .hero-btn:hover {
    transform: translateY(-2px);
}

body.page-kurochka-ultra .hero-btn--main {
    color: #fff;
    background: linear-gradient(135deg, #ff6e45, #ff2a95);
    box-shadow: 0 12px 25px rgba(255, 62, 149, 0.3);
}

body.page-kurochka-ultra .hero-btn--main:hover {
    box-shadow: 0 15px 30px rgba(255, 62, 149, 0.42);
}

body.page-kurochka-ultra .hero-btn--back {
    color: #fff3fd;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

body.page-kurochka-ultra .gallery-zone {
    margin-top: 24px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(10, 12, 24, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.32);
}

body.page-kurochka-ultra .gallery-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

body.page-kurochka-ultra .filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body.page-kurochka-ultra .filter-btn,
body.page-kurochka-ultra .action-btn {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    border-radius: 10px;
    padding: 9px 14px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

body.page-kurochka-ultra .filter-btn:hover,
body.page-kurochka-ultra .action-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.45);
}

body.page-kurochka-ultra .filter-btn.is-active {
    background: linear-gradient(135deg, #ff8744, #ff3a9d);
    border-color: transparent;
}

body.page-kurochka-ultra .wall {
    column-count: 4;
    column-gap: 14px;
}

body.page-kurochka-ultra .card {
    width: 100%;
    margin: 0 0 14px;
    display: inline-block;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    background: rgba(19, 20, 36, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

body.page-kurochka-ultra .card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

body.page-kurochka-ultra .card__media {
    position: relative;
    background: rgba(10, 10, 20, 0.55);
}

body.page-kurochka-ultra .card__media img,
body.page-kurochka-ultra .card__media video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

body.page-kurochka-ultra .card.placeholder .card__media {
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

body.page-kurochka-ultra .card__placeholder {
    width: 100%;
    min-height: 160px;
    border-radius: 12px;
    border: 2px dashed rgba(255, 255, 255, 0.25);
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.06) 12px,
            rgba(255, 255, 255, 0.02) 12px,
            rgba(255, 255, 255, 0.02) 24px
        );
    color: rgba(255, 242, 251, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 14px;
}

body.page-kurochka-ultra .tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    background: rgba(8, 10, 20, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

body.page-kurochka-ultra .card__body {
    padding: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

body.page-kurochka-ultra .card__title {
    font-size: 0.98rem;
    line-height: 1.25;
    margin: 0;
    color: #fff3fd;
    word-break: break-word;
}

body.page-kurochka-ultra .card__actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

body.page-kurochka-ultra .photo-preview {
    cursor: zoom-in;
}

body.page-kurochka-ultra .download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 6px 11px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(101, 255, 173, 0.12);
    color: #e8ffe4;
    font-size: 0.84rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

body.page-kurochka-ultra .download-btn:hover {
    transform: translateY(-1px);
    background: rgba(101, 255, 173, 0.22);
    border-color: rgba(144, 255, 195, 0.55);
}

body.page-kurochka-ultra .like-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
    color: #ffe3f7;
    font-size: 0.86rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

body.page-kurochka-ultra .like-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.3);
}

body.page-kurochka-ultra .like-btn.is-liked {
    background: rgba(255, 82, 156, 0.22);
    border-color: rgba(255, 109, 176, 0.55);
}

body.page-kurochka-ultra .stat-pill.is-error {
    background: rgba(255, 79, 137, 0.2);
    border-color: rgba(255, 121, 165, 0.5);
    color: #ffe0ec;
}

body.page-kurochka-ultra .card.is-hidden {
    display: none;
}

body.page-kurochka-ultra.no-scroll {
    overflow: hidden;
}

body.page-kurochka-ultra .lightbox {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: none;
}

body.page-kurochka-ultra .lightbox.is-open {
    display: block;
}

body.page-kurochka-ultra .lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: none;
    margin: 0;
    padding: 0;
    background: rgba(4, 6, 14, 0.86);
    cursor: pointer;
}

body.page-kurochka-ultra .lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(1000px, 94vw);
    max-height: 88vh;
    margin: 4vh auto;
    padding: 42px 18px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 16, 32, 0.96);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.page-kurochka-ultra .lightbox__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

body.page-kurochka-ultra #lightboxImage {
    max-width: 100%;
    max-height: calc(88vh - 110px);
    object-fit: contain;
    margin: 0 auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

body.page-kurochka-ultra .lightbox__actions {
    display: flex;
    justify-content: flex-end;
}

body.page-kurochka-ultra.party-mode .hero-btn--main {
    animation: kurochkaUltraPulse 0.8s ease-in-out infinite alternate;
}

body.page-kurochka-ultra.party-mode .decor {
    opacity: 0.7;
}

@keyframes kurochkaUltraPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.04); }
}

@media (max-width: 1100px) {
    body.page-kurochka-ultra .wall {
        column-count: 3;
    }
}

@media (max-width: 760px) {
    body.page-kurochka-ultra .site-wrap {
        width: min(100%, 96vw);
        margin-top: 20px;
        margin-bottom: 24px;
    }

    body.page-kurochka-ultra .hero,
    body.page-kurochka-ultra .gallery-zone {
        padding: 18px;
        border-radius: 18px;
    }

    body.page-kurochka-ultra .wall {
        column-count: 2;
    }

    body.page-kurochka-ultra .card.placeholder .card__media {
        min-height: 150px;
    }
}

@media (max-width: 520px) {
    body.page-kurochka-ultra .wall {
        column-count: 1;
    }
}
