* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    min-height: 100%;
    background-color: #141824;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: transparent;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    color: #fff;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(1200px circle at 20% 15%, rgba(29, 185, 84, 0.18), transparent 45%),
        radial-gradient(1100px circle at 85% 25%, rgba(88, 101, 242, 0.16), transparent 52%),
        radial-gradient(900px circle at 55% 85%, rgba(214, 41, 118, 0.12), transparent 55%),
        linear-gradient(180deg, #252b3a 0%, #141824 100%);
    z-index: -1;
    pointer-events: none;
}

body.scrolled {
    justify-content: flex-start;
    padding-top: 0;
}

#snowCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-decorations {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    top: 0;
    left: 0;
}

.decor {
    position: absolute;
    font-size: 4rem;
    opacity: 0.15;
    filter: blur(2px);
    animation: float 10s infinite ease-in-out;
}

.item-1 { top: 10%; left: 10%; animation-delay: 0s; }
.item-2 { top: 20%; right: 15%; animation-delay: 2s; font-size: 5rem; }
.item-3 { bottom: 15%; left: 20%; animation-delay: 4s; }
.item-4 { bottom: 10%; right: 10%; animation-delay: 1s; font-size: 6rem; }
.item-5 { top: 50%; left: 5%; animation-delay: 3s; }
.item-6 { top: 5%; left: 50%; animation-delay: 5s; }

.heart-bg {
    color: #ff7675;
    font-size: 2rem;
}
.item-7 { top: 15%; left: 80%; animation-delay: 1.5s; }
.item-8 { bottom: 25%; left: 10%; animation-delay: 3.5s; }
.item-9 { top: 60%; right: 25%; animation-delay: 2.5s; }
.item-10 { bottom: 40%; right: 5%; animation-delay: 0.5s; }

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

/* Updated container z-index to be above decorations */
.container {
    width: 100%;
    max-width: 420px;
    animation: fadeIn 0.6s ease-out;
    position: relative;
    z-index: 10;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin: 120px auto;
    padding: 20px;
    text-align: center;
}

.music-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    width: 352px;
    max-width: calc(100vw - 40px);
    display: block;
    visibility: visible;
    padding: 10px;
    border-radius: 18px;
    background: rgba(10, 12, 18, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
    isolation: isolate;
    overflow: visible;
}

.easter-btn {
    position: absolute;
    top: -50px;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
    background: rgba(12, 14, 22, 0.65);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 102;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.easter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 0, 184, 0.75), rgba(0, 213, 255, 0.75), rgba(0, 255, 133, 0.75), rgba(255, 230, 0, 0.6), rgba(255, 0, 76, 0.75), rgba(255, 0, 184, 0.75));
    background-size: 300% 100%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.75;
    animation: borderSlide 11s linear infinite;
}

.easter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.easter-panel {
    position: absolute;
    left: 0;
    bottom: calc(100% + 12px);
    width: 340px;
    max-width: min(340px, calc(100vw - 40px));
    border-radius: 18px;
    padding: 14px;
    background: rgba(10, 12, 18, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5);
    z-index: 300;
    display: none;
    overflow: hidden;
}

.easter-panel.active {
    display: block;
}

.easter-panel::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 24px;
    background: conic-gradient(from 180deg, rgba(255, 0, 76, 0.22), rgba(255, 138, 0, 0.2), rgba(255, 230, 0, 0.14), rgba(0, 255, 133, 0.18), rgba(0, 213, 255, 0.18), rgba(107, 91, 255, 0.18), rgba(255, 0, 184, 0.2), rgba(255, 0, 76, 0.22));
    filter: blur(18px);
    opacity: 0.55;
    pointer-events: none;
}

.easter-panel > * {
    position: relative;
    z-index: 1;
}

.easter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.easter-title {
    font-weight: 900;
    letter-spacing: 0.3px;
    font-size: 14px;
}

.easter-close {
    border: 0;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    cursor: pointer;
    color: #ffffff;
    background: rgba(12, 14, 22, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.easter-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12px;
    opacity: 0.86;
    margin-bottom: 10px;
}

.easter-canvas {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.18);
}

.easter-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.easter-start {
    flex: 1;
    border: 0;
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 900;
    color: #ffffff;
    cursor: pointer;
    background: rgba(29, 185, 84, 0.22);
    border: 1px solid rgba(29, 185, 84, 0.35);
}

.easter-hint {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.7;
    line-height: 1.3;
}

.music-controls::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 24px;
    background: conic-gradient(from 180deg, rgba(255, 0, 76, 0.22), rgba(255, 138, 0, 0.2), rgba(255, 230, 0, 0.14), rgba(0, 255, 133, 0.18), rgba(0, 213, 255, 0.18), rgba(107, 91, 255, 0.18), rgba(255, 0, 184, 0.2), rgba(255, 0, 76, 0.22));
    filter: blur(18px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

.music-controls::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    pointer-events: none;
    z-index: 0;
}

.playlist-menu-btn {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(12, 14, 22, 0.65);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 102;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    position: absolute;
}

.playlist-menu-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 77, 77, 0.75), rgba(255, 230, 0, 0.6), rgba(0, 213, 255, 0.75), rgba(107, 91, 255, 0.75), rgba(255, 0, 184, 0.75), rgba(255, 77, 77, 0.75));
    background-size: 300% 100%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.75;
    animation: borderSlide 10s linear infinite;
}

.playlist-menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.playlist-menu-btn svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.spotify-frame {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    padding: 1px;
}

.spotify-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 0, 76, 0.85), rgba(255, 138, 0, 0.75), rgba(255, 230, 0, 0.6), rgba(0, 255, 133, 0.75), rgba(0, 213, 255, 0.75), rgba(107, 91, 255, 0.75), rgba(255, 0, 184, 0.75), rgba(255, 0, 76, 0.85));
    background-size: 300% 100%;
    animation: borderSlide 14s linear infinite;
    pointer-events: none;
}

.spotify-frame::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 15px;
    background: rgba(10, 12, 18, 0.26);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    pointer-events: none;
}

.spotify-embed {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    background: transparent;
    display: block;
    visibility: visible;
    opacity: 1;
    filter: saturate(1.05) contrast(1.03);
}

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

.effects-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(12, 14, 22, 0.65);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 200;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.effects-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(0, 213, 255, 0.75), rgba(107, 91, 255, 0.75), rgba(255, 0, 184, 0.75), rgba(0, 213, 255, 0.75));
    background-size: 300% 100%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.75;
    animation: borderSlide 12s linear infinite;
}

.effects-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.effects-panel {
    position: fixed;
    left: 20px;
    top: 72px;
    width: 240px;
    padding: 14px 14px 10px;
    border-radius: 14px;
    background: rgba(10, 12, 18, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 300;
    overflow: hidden;
}

.effects-panel.active {
    display: block;
}

.effects-panel::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 20px;
    background: conic-gradient(from 180deg, rgba(255, 0, 76, 0.22), rgba(255, 138, 0, 0.2), rgba(255, 230, 0, 0.14), rgba(0, 255, 133, 0.18), rgba(0, 213, 255, 0.18), rgba(107, 91, 255, 0.18), rgba(255, 0, 184, 0.2), rgba(255, 0, 76, 0.22));
    filter: blur(18px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

.effects-panel > * {
    position: relative;
    z-index: 1;
}

.effects-panel-title {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.effects-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 2px;
}

.effects-row + .effects-row {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.effects-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.effects-toggle {
    width: 44px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.25);
    position: relative;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.effects-toggle-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
    transform: translateX(3px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.effects-toggle[aria-pressed="true"] {
    background: rgba(0, 213, 255, 0.22);
    border-color: rgba(0, 213, 255, 0.35);
}

.effects-toggle[aria-pressed="true"] .effects-toggle-thumb {
    background: #ffffff;
    transform: translateX(23px);
}

.playlist-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 352px;
    max-width: calc(100vw - 40px);
    max-height: 60vh;
    background: rgba(24, 24, 24, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 200;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

.playlist-menu.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.playlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.playlist-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.playlist-close-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
}

.playlist-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.playlist-close-btn svg {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.playlist-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
}

.playlist-empty {
    padding: 18px 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.playlist-list::-webkit-scrollbar {
    width: 6px;
}

.playlist-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.playlist-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.playlist-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 4px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid transparent;
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.playlist-item.active {
    background: rgba(29, 185, 84, 0.2);
    border-color: rgba(29, 185, 84, 0.4);
}

.playlist-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

.playlist-item-icon svg {
    width: 20px;
    height: 20px;
}

.playlist-item-info {
    flex: 1;
    min-width: 0;
}

.playlist-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.playlist-item-artist {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.playlist-item-play {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(29, 185, 84, 0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.playlist-item-play:hover {
    background: rgba(29, 185, 84, 1);
    transform: scale(1.1);
}

.playlist-item-play svg {
    width: 16px;
    height: 16px;
    margin-left: 2px;
}

.playlist-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.playlist-pagination-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
}

.playlist-pagination-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.playlist-pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.playlist-pagination-btn svg {
    width: 14px;
    height: 14px;
}

.playlist-page-info {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Song Request Modal */
.container {
    width: 100%;
    max-width: 420px;
    animation: fadeIn 0.6s ease-out;
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin: 120px auto;
    padding: 20px;
}

.container.hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-section {
    text-align: center;
    margin-bottom: 30px;
}

.avatar {
    margin-bottom: 20px;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: transparent;
    backdrop-filter: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.65), 0 0 42px rgba(255, 255, 255, 0.28), inset 0 0 0 2px rgba(255, 255, 255, 0.92);
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
}

.avatar-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, #ff004c, #ff8a00, #ffe600, #00ff85, #00d5ff, #6b5bff, #ff00b8, #ff004c);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: rainbowSpin 10s linear infinite;
}

.avatar-circle::after {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(from 180deg, #ff004c, #ff8a00, #ffe600, #00ff85, #00d5ff, #6b5bff, #ff00b8, #ff004c);
    opacity: 0.95;
    mix-blend-mode: color;
    pointer-events: none;
    z-index: 1;
    animation: rainbowSpin 8s linear infinite;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(1) contrast(1.15) brightness(1.12);
    position: relative;
    z-index: 0;
}

.avatar-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.78), 0 0 55px rgba(255, 255, 255, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.95);
}

.status-badge {
    margin: 10px auto 0;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(10, 12, 18, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
    user-select: none;
}

.status-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.status-updated {
    margin: 6px auto 0;
    width: fit-content;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.78);
    opacity: 0.92;
    padding: 0 8px;
    user-select: none;
}

.status-indicator {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #1db954;
    box-shadow: 0 0 10px rgba(29, 185, 84, 0.75), 0 0 18px rgba(29, 185, 84, 0.35);
}

.status-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.2px;
}

.status-badge.status-online .status-indicator {
    background: #1db954;
    box-shadow: 0 0 10px rgba(29, 185, 84, 0.75), 0 0 18px rgba(29, 185, 84, 0.35);
}

.status-badge.status-work .status-indicator {
    background: #ffe600;
    box-shadow: 0 0 10px rgba(255, 230, 0, 0.75), 0 0 18px rgba(255, 230, 0, 0.35);
}

.status-badge.status-offline .status-indicator {
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.35), 0 0 18px rgba(255, 255, 255, 0.18);
}

.name {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem; /* Reduced size from 3.5rem */
    font-weight: 700;
    background: none;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.4);
    animation: glow 2s ease-in-out infinite alternate;
    letter-spacing: 2px;
}

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

@keyframes rainbowSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.15rem; /* Reduced size from 1.8rem */
    font-weight: 600;
    color: #ffffff;
    position: relative;
    display: inline-block;
    z-index: 0;
    isolation: isolate;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
    letter-spacing: 1px;
}

.subtitle::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: #ff004c;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.6px currentColor;
    pointer-events: none;
    z-index: -1;
    filter: hue-rotate(0deg);
    animation: outlineHue 14s linear infinite;
}

.subtitle::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: #ff004c;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2.2px currentColor;
    pointer-events: none;
    z-index: -2;
    opacity: 0.8;
    filter: hue-rotate(0deg) blur(3.5px);
    animation: outlineHue 14s linear infinite;
}

@keyframes outlineHue {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

@keyframes neonGlow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.55), 0 0 18px rgba(0, 213, 255, 0.55), 0 0 34px rgba(0, 213, 255, 0.28);
    }
    to {
        text-shadow: 0 0 14px rgba(255, 255, 255, 0.75), 0 0 26px rgba(0, 213, 255, 0.72), 0 0 46px rgba(0, 213, 255, 0.42);
    }
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.4);
    }
    to {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 255, 255, 0.6),
            0 0 50px rgba(255, 255, 255, 0.4),
            0 0 70px rgba(255, 255, 255, 0.2);
    }
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    background: transparent;
    backdrop-filter: none;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: none;
    border: none;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.link-card > * {
    position: relative;
    z-index: 1;
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
    background: transparent;
}

.link-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    background: transparent;
    overflow: hidden;
}

.link-icon.discord {
    background: transparent;
}

.link-icon.gta {
    background: transparent;
}

.link-text {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.5),
                 0 0 30px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.link-arrow {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.link-card:hover .link-arrow {
    transform: translateX(4px);
    color: rgba(255, 255, 255, 1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.75));
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    background: transparent;
    box-shadow: none;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.95));
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link.social-spotify {
    color: #1db954;
    filter: drop-shadow(0 0 10px rgba(29, 185, 84, 0.75)) drop-shadow(0 0 18px rgba(29, 185, 84, 0.55));
}

.social-link.social-spotify:hover {
    filter: drop-shadow(0 0 14px rgba(29, 185, 84, 0.9)) drop-shadow(0 0 24px rgba(29, 185, 84, 0.75));
}

.social-link.social-youtube {
    color: #ff4d4d;
    filter: drop-shadow(0 0 10px rgba(255, 77, 77, 0.8)) drop-shadow(0 0 18px rgba(255, 77, 77, 0.6));
}

.social-link.social-youtube:hover {
    filter: drop-shadow(0 0 14px rgba(255, 77, 77, 0.95)) drop-shadow(0 0 26px rgba(255, 77, 77, 0.8));
}

.social-link.social-discord {
    color: #5865f2;
    filter: drop-shadow(0 0 10px rgba(88, 101, 242, 0.8)) drop-shadow(0 0 18px rgba(88, 101, 242, 0.6));
}

.social-link.social-discord:hover {
    filter: drop-shadow(0 0 14px rgba(88, 101, 242, 0.95)) drop-shadow(0 0 26px rgba(88, 101, 242, 0.8));
}

.social-link.social-discord img {
    filter: brightness(0) saturate(100%) invert(44%) sepia(93%) saturate(1457%) hue-rotate(209deg) brightness(97%) contrast(97%);
}

.social-link.social-instagram {
    filter: drop-shadow(0 0 12px rgba(250, 126, 30, 0.65)) drop-shadow(0 0 18px rgba(214, 41, 118, 0.65));
}

.social-link.social-instagram:hover {
    filter: drop-shadow(0 0 16px rgba(250, 126, 30, 0.85)) drop-shadow(0 0 26px rgba(214, 41, 118, 0.85));
}

.social-link.social-instagram svg {
    width: 32px;
    height: 32px;
}

.social-link.social-email {
    color: #ffffff;
    filter: none;
}

.social-link.social-email:hover {
    filter: none;
}

.social-link.social-email svg {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 22px rgba(255, 255, 255, 0.75));
}

.social-link.social-email:hover svg {
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.98)) drop-shadow(0 0 32px rgba(255, 255, 255, 0.9));
}

.about-link {
    display: block;
    text-align: center;
    margin-top: 32px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.5),
                 0 0 30px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-link:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(255, 255, 255, 1),
                 0 0 25px rgba(255, 255, 255, 0.7),
                 0 0 35px rgba(255, 255, 255, 0.5);
}

.scroll-down-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    color: #ffffff;
    animation: bounceDown 2s infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.scroll-down-indicator svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.spacer-before-about {
    height: 50vh;
    min-height: 400px;
}

.spacer-after-about {
    height: 50vh;
    min-height: 400px;
}

.about-section {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
    scroll-margin-top: 0;
}

.about-content {
    text-align: center;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.5),
                 0 0 30px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6),
                 0 0 15px rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3px;
}

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

.scroll-to-top {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0;
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.1);
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1)) 
            drop-shadow(0 0 30px rgba(255, 255, 255, 1))
            drop-shadow(0 0 40px rgba(255, 255, 255, 0.9))
            drop-shadow(0 0 50px rgba(255, 255, 255, 0.7))
            brightness(1.5)
            contrast(1.2);
    transition: all 0.3s ease;
}

.scroll-to-top:hover .scroll-to-top-icon {
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 1)) 
            drop-shadow(0 0 35px rgba(255, 255, 255, 1))
            drop-shadow(0 0 45px rgba(255, 255, 255, 1))
            drop-shadow(0 0 60px rgba(255, 255, 255, 0.9))
            brightness(1.8)
            contrast(1.3);
}

.scroll-to-top svg {
    width: 50px;
    height: 50px;
    color: #ffffff;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1)) 
            drop-shadow(0 0 30px rgba(255, 255, 255, 1))
            drop-shadow(0 0 40px rgba(255, 255, 255, 0.9))
            drop-shadow(0 0 50px rgba(255, 255, 255, 0.7))
            brightness(1.5)
            contrast(1.2);
    transition: all 0.3s ease;
}

.scroll-to-top:hover svg {
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 1)) 
            drop-shadow(0 0 35px rgba(255, 255, 255, 1))
            drop-shadow(0 0 45px rgba(255, 255, 255, 1))
            drop-shadow(0 0 60px rgba(255, 255, 255, 0.9))
            brightness(1.8)
            contrast(1.3);
}

/* Responsive Design */
@media (max-width: 480px) {
    body {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        height: auto;
        min-height: 100vh;
    }
    
    html {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        height: 100%;
    }
    
    .container {
        max-width: 100%;
    }

    .name {
        font-size: 24px;
    }

    .subtitle {
        font-size: 16px;
    }

    .link-card {
        padding: 16px 18px;
    }

    .link-text {
        font-size: 15px;
    }

    .avatar-circle {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
    
    .music-controls {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: calc(100vw - 20px);
    }
    
    .song-request-btn {
        top: -95px;
        right: 10px;
        min-width: 120px;
        font-size: 12px;
        padding: 0 10px;
    }
    
    .song-request-btn span {
        display: none;
    }
    
    .song-request-btn {
        min-width: 40px;
        width: 40px;
    }
    
    .playlist-menu-btn {
        top: -45px;
        right: 10px;
    }

    .easter-btn {
        top: -45px;
        left: 10px;
    }

    .effects-btn {
        top: 14px;
        left: 14px;
    }

    .effects-panel {
        left: 14px;
        top: 60px;
        width: min(240px, calc(100vw - 28px));
    }
    
    .spotify-embed {
        width: 100%;
    }
    
    .playlist-menu {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: calc(100vw - 20px);
        max-height: 50vh;
    }

    .about-section {
        padding: 30px 20px;
        margin: 60px auto;
    }

    .about-title {
        font-size: 26px;
    }

    .about-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .scroll-to-top {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    html {
        background-color: #0f121a;
    }

    body::before {
        background:
            radial-gradient(1200px circle at 20% 15%, rgba(29, 185, 84, 0.16), transparent 45%),
            radial-gradient(1100px circle at 85% 25%, rgba(88, 101, 242, 0.14), transparent 52%),
            radial-gradient(900px circle at 55% 85%, rgba(214, 41, 118, 0.1), transparent 55%),
            linear-gradient(180deg, #1c2130 0%, #0f121a 100%);
    }
}
