﻿* {
    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;
    align-items: center;
    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);
}

.stats-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 18px;
}

.stats-actions--inline {
    margin-top: 0;
    margin-left: 8px;
    flex-shrink: 0;
}

.discord-join-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #fff6fb;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: none;
    white-space: nowrap;
    line-height: 1;
    font-size: 0.72rem;
    font-weight: 700;
    background:
        linear-gradient(135deg, rgba(255, 182, 193, 0.92), rgba(255, 132, 173, 0.9));
    box-shadow:
        0 16px 28px rgba(255, 105, 155, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.discord-join-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 34px rgba(255, 105, 155, 0.3),
        0 0 26px rgba(255, 182, 193, 0.2);
    filter: saturate(1.08);
}

.discord-join-btn__icon {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    font-size: 0.72rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.discord-join-btn.is-disabled {
    opacity: 0.55;
    pointer-events: none;
    box-shadow: none;
    filter: grayscale(0.15);
}

.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);
    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.is-offline {
    align-self: start;
}

.discord-card.is-offline .discord-card__activity,
.discord-card.is-offline .discord-card__footer {
    display: none;
}

.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: visible;
    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);
    z-index: 3;
}

.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);
    z-index: 1;
}

.discord-avatar-decoration {
    position: absolute;
    inset: -11px;
    width: calc(100% + 22px);
    height: calc(100% + 22px);
    object-fit: contain;
    pointer-events: none;
    z-index: 2;
}

.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],
.discord-avatar-decoration[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-list {
    display: grid;
    gap: 12px;
}

.discord-activity + .discord-activity {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.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;
}

.discord-activity-subtitle:empty {
    display: none;
}

.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-chip[hidden] {
    display: none;
}

.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: "\25B6";
    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: translateY(-2px);
    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;
    }

    .stats-actions--inline {
        width: 100%;
        margin-top: 8px;
        margin-left: 0;
    }

    .discord-join-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
    }
    
    .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;
    animation: textGlow 1.5s ease-in-out infinite;
}

.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);
    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);
    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);
    box-shadow: 
        0 8px 20px rgba(142, 68, 173, 0.4),
        0 3px 10px rgba(0, 0, 0, 0.2);
}

@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;
}


/* ===== ERROR PAGES ===== */
/* ===== AUTUMN THEME: September through November ===== */
body.page-index.season-autumn {
    background: linear-gradient(135deg, #211a19, #3a261c 52%, #171b20);
    color: #f7eee0;
}

body.page-index.season-autumn #splash-screen {
    background: linear-gradient(135deg, #211a19, #3a261c 52%, #171b20);
}

body.page-index.season-autumn .splash-title,
body.page-index.season-autumn h1 {
    color: #ffd18a;
    text-shadow: 0 0 12px rgba(226, 142, 55, 0.48);
}

body.page-index.season-autumn .splash-subtitle,
body.page-index.season-autumn .subtitle,
body.page-index.season-autumn .label,
body.page-index.season-autumn .info-meta__label,
body.page-index.season-autumn .discord-card__eyebrow,
body.page-index.season-autumn .discord-card__label,
body.page-index.season-autumn .track-info {
    color: #efb567;
}

body.page-index.season-autumn header {
    border-bottom-color: rgba(229, 160, 78, 0.36);
}

body.page-index.season-autumn header::after {
    background: linear-gradient(90deg, transparent, #e7a050, transparent);
}

body.page-index.season-autumn .music-player,
body.page-index.season-autumn .info-block,
body.page-index.season-autumn .discord-card {
    background: rgba(31, 25, 25, 0.82);
    border-color: rgba(231, 163, 85, 0.2);
}

body.page-index.season-autumn .stat-item,
body.page-index.season-autumn .info-meta,
body.page-index.season-autumn .discord-chip,
body.page-index.season-autumn .discord-card__activity {
    background: rgba(117, 66, 30, 0.2);
    border-color: rgba(238, 180, 99, 0.25);
}

body.page-index.season-autumn .control-btn {
    color: #ffd18a;
    background: rgba(197, 116, 46, 0.18);
    border-color: rgba(237, 177, 93, 0.36);
}

body.page-index.season-autumn #volume-slider {
    background: rgba(247, 213, 158, 0.34);
}

body.page-index.season-autumn #volume-slider::-webkit-slider-thumb {
    background: #efb567;
}

body.page-index.season-autumn #volume-slider::-moz-range-thumb {
    background: #efb567;
}

body.page-index.season-autumn .control-btn:hover,
body.page-index.season-autumn .stat-item:hover {
    background: rgba(210, 126, 50, 0.28);
    box-shadow: 0 8px 20px rgba(120, 59, 22, 0.32);
}

body.page-index.season-autumn .label::before {
    color: #f0b261;
}

body.page-index.season-autumn .friend-tag,
body.page-index.season-autumn .discord-join-btn {
    background: linear-gradient(135deg, #d46732, #b9422d 55%, #77342a);
    box-shadow: 0 8px 20px rgba(110, 45, 24, 0.35);
}

body.page-index.season-autumn .message {
    border-left-color: #e2a14a;
    background: rgba(132, 72, 28, 0.18);
}

body.page-index.season-autumn .message:hover,
body.page-index.season-autumn .info-block:hover,
body.page-index.season-autumn .discord-card:hover {
    border-color: rgba(239, 177, 91, 0.48);
    box-shadow: 0 14px 30px rgba(104, 48, 20, 0.35);
}

body.page-index.season-autumn .trail {
    color: #efb567;
    text-shadow: 0 0 8px #d87936, 0 0 16px #d87936;
}

body.page-index.season-autumn .snowflake {
    filter: drop-shadow(0 4px 4px rgba(45, 23, 12, 0.42));
}

body.page-index.season-autumn .contact-info {
    color: #efb567;
}

body.page-index.season-autumn .contact-info div {
    color: #efb567 !important;
}

body.page-index.season-autumn .pulse {
    background-color: #efb567;
    box-shadow: 0 0 10px #efb567;
}

/* ===== WINTER THEME: December through February ===== */
body.page-index.season-winter {
    background: linear-gradient(135deg, #0d1b27, #183646 54%, #132228);
    color: #eef9ff;
}

body.page-index.season-winter #splash-screen {
    background: linear-gradient(135deg, #0d1b27, #183646 54%, #132228);
}

body.page-index.season-winter .splash-title,
body.page-index.season-winter h1 {
    color: #d7f4ff;
    text-shadow: 0 0 16px rgba(120, 211, 255, 0.5);
}

body.page-index.season-winter .splash-subtitle,
body.page-index.season-winter .subtitle,
body.page-index.season-winter .label,
body.page-index.season-winter .info-meta__label,
body.page-index.season-winter .discord-card__eyebrow,
body.page-index.season-winter .discord-card__label,
body.page-index.season-winter .track-info {
    color: #9ed8ff;
}

body.page-index.season-winter header {
    border-bottom-color: rgba(158, 216, 255, 0.34);
}

body.page-index.season-winter header::after {
    background: linear-gradient(90deg, transparent, #8dd6fa, transparent);
}

body.page-index.season-winter .music-player,
body.page-index.season-winter .info-block,
body.page-index.season-winter .discord-card {
    background: rgba(11, 30, 41, 0.84);
    border-color: rgba(158, 216, 255, 0.2);
}

body.page-index.season-winter .stat-item,
body.page-index.season-winter .info-meta,
body.page-index.season-winter .discord-chip,
body.page-index.season-winter .discord-card__activity {
    background: rgba(88, 168, 205, 0.13);
    border-color: rgba(163, 222, 255, 0.24);
}

body.page-index.season-winter .control-btn {
    color: #d8f4ff;
    background: rgba(92, 180, 220, 0.16);
    border-color: rgba(160, 223, 255, 0.38);
}

body.page-index.season-winter #volume-slider {
    background: rgba(209, 242, 255, 0.36);
}

body.page-index.season-winter #volume-slider::-webkit-slider-thumb {
    background: #9ed8ff;
}

body.page-index.season-winter #volume-slider::-moz-range-thumb {
    background: #9ed8ff;
}

body.page-index.season-winter .control-btn:hover,
body.page-index.season-winter .stat-item:hover {
    background: rgba(92, 180, 220, 0.28);
    box-shadow: 0 8px 20px rgba(34, 119, 158, 0.3);
}

body.page-index.season-winter .label::before {
    color: #b9e8ff;
}

body.page-index.season-winter .friend-tag,
body.page-index.season-winter .discord-join-btn {
    background: linear-gradient(135deg, #287fa7, #296896 56%, #24506e);
    box-shadow: 0 8px 20px rgba(22, 84, 116, 0.34);
}

body.page-index.season-winter .message {
    border-left-color: #9ed8ff;
    background: rgba(82, 165, 204, 0.13);
}

body.page-index.season-winter .message:hover,
body.page-index.season-winter .info-block:hover,
body.page-index.season-winter .discord-card:hover {
    border-color: rgba(182, 231, 255, 0.5);
    box-shadow: 0 14px 30px rgba(21, 92, 126, 0.32);
}

body.page-index.season-winter .trail {
    color: #c9efff;
    text-shadow: 0 0 8px #76ccef, 0 0 16px #76ccef;
}

body.page-index.season-winter .snowflake {
    color: #e5f8ff;
    text-shadow: 0 0 12px rgba(141, 214, 250, 0.74);
}

body.page-index.season-winter .contact-info {
    color: #9ed8ff;
}

body.page-index.season-winter .contact-info div {
    color: #9ed8ff !important;
}

body.page-index.season-winter .pulse {
    background-color: #9ed8ff;
    box-shadow: 0 0 10px #9ed8ff;
}

/* ===== SUMMER THEME: June through August ===== */
body.page-index.season-summer {
    background: linear-gradient(135deg, #132b2c, #294538 52%, #253127);
    color: #f4f7df;
}

body.page-index.season-summer #splash-screen {
    background: linear-gradient(135deg, #132b2c, #294538 52%, #253127);
}

body.page-index.season-summer .splash-title,
body.page-index.season-summer h1 {
    color: #fff0a8;
    text-shadow: 0 0 16px rgba(255, 204, 84, 0.46);
}

body.page-index.season-summer .splash-subtitle,
body.page-index.season-summer .subtitle,
body.page-index.season-summer .label,
body.page-index.season-summer .info-meta__label,
body.page-index.season-summer .discord-card__eyebrow,
body.page-index.season-summer .discord-card__label,
body.page-index.season-summer .track-info {
    color: #ffd166;
}

body.page-index.season-summer header {
    border-bottom-color: rgba(255, 209, 102, 0.35);
}

body.page-index.season-summer header::after {
    background: linear-gradient(90deg, transparent, #ffd166, transparent);
}

body.page-index.season-summer .music-player,
body.page-index.season-summer .info-block,
body.page-index.season-summer .discord-card {
    background: rgba(17, 38, 34, 0.84);
    border-color: rgba(255, 219, 123, 0.2);
}

body.page-index.season-summer .stat-item,
body.page-index.season-summer .info-meta,
body.page-index.season-summer .discord-chip,
body.page-index.season-summer .discord-card__activity {
    background: rgba(108, 142, 57, 0.17);
    border-color: rgba(246, 221, 128, 0.24);
}

body.page-index.season-summer .control-btn {
    color: #fff1ac;
    background: rgba(255, 201, 75, 0.16);
    border-color: rgba(255, 218, 118, 0.4);
}

body.page-index.season-summer #volume-slider {
    background: rgba(249, 239, 181, 0.36);
}

body.page-index.season-summer #volume-slider::-webkit-slider-thumb {
    background: #ffd166;
}

body.page-index.season-summer #volume-slider::-moz-range-thumb {
    background: #ffd166;
}

body.page-index.season-summer .control-btn:hover,
body.page-index.season-summer .stat-item:hover {
    background: rgba(255, 201, 75, 0.27);
    box-shadow: 0 8px 20px rgba(39, 89, 51, 0.38);
}

body.page-index.season-summer .label::before {
    color: #ffe08a;
}

body.page-index.season-summer .friend-tag,
body.page-index.season-summer .discord-join-btn {
    background: linear-gradient(135deg, #4fa565, #288b72 58%, #246a65);
    box-shadow: 0 8px 20px rgba(20, 91, 69, 0.35);
}

body.page-index.season-summer .message {
    border-left-color: #ffd166;
    background: rgba(133, 164, 58, 0.17);
}

body.page-index.season-summer .message:hover,
body.page-index.season-summer .info-block:hover,
body.page-index.season-summer .discord-card:hover {
    border-color: rgba(255, 229, 147, 0.52);
    box-shadow: 0 14px 30px rgba(27, 91, 62, 0.36);
}

body.page-index.season-summer .trail {
    color: #ffe08a;
    text-shadow: 0 0 8px #e5b94f, 0 0 16px #e5b94f;
}

body.page-index.season-summer .snowflake {
    filter: drop-shadow(0 4px 4px rgba(12, 47, 35, 0.45));
}

body.page-index.season-summer .contact-info {
    color: #ffd166;
}

body.page-index.season-summer .contact-info div {
    color: #ffd166 !important;
}

body.page-index.season-summer .pulse {
    background-color: #ffd166;
    box-shadow: 0 0 10px #ffd166;
}

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: fixed;
    inset: 0;
    width: auto;
    height: auto;
    background: radial-gradient(rgba(255, 182, 193, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: none;
    z-index: 0;
    pointer-events: none;
}

@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);
}

