/* Copyright (c) elNino0916. All rights reserved. */
:root {
    color-scheme: dark;
    --color-background: #050a16;
    --color-background-alt: rgba(7, 18, 36, 0.88);
    --color-surface: rgba(255, 255, 255, 0.18);
    --color-surface-alt: rgba(70, 110, 168, 0.12);
    --color-surface-hover: rgba(120, 190, 255, 0.32);
    --color-surface-ring: rgba(255, 255, 255, 0.26);
    --color-text: #f8fafc;
    --color-text-soft: rgba(248, 250, 252, 0.9);
    --color-text-muted: rgba(226, 232, 240, 0.7);
    --color-accent: #60a5fa;
    --color-border: rgba(255, 255, 255, 0.26);
    --color-border-strong: rgba(255, 255, 255, 0.45);
    --color-glow: rgba(6, 18, 42, 0.55);
    --color-glow-strong: rgba(6, 18, 42, 0.7);
    --color-icon: #ffffff;
    --color-focus-ring: rgba(96, 165, 250, 0.45);
    --glass-drop-shadow: 0 35px 90px rgba(3, 10, 24, 0.45);
    --glass-raised-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), inset 0 -18px 40px rgba(4, 14, 32, 0.42), 0 24px 55px rgba(3, 10, 24, 0.38);
    --glass-card-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -18px 40px rgba(6, 18, 42, 0.35), 0 28px 70px rgba(3, 10, 24, 0.4);
    --glass-hover-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 -20px 45px rgba(20, 94, 180, 0.48), 0 30px 75px rgba(4, 12, 30, 0.48);
    --glass-highlight: rgba(255, 255, 255, 0.78);
    --glass-highlight-soft: rgba(255, 255, 255, 0.18);
    --glass-bottom-glow: rgba(77, 148, 255, 0.3);
    --theme-transition-duration: 650ms;
    --theme-transition-origin-x: 50%;
    --theme-transition-origin-y: 50%;
}

[data-theme="light"] {
    color-scheme: light;
    --color-background: #f7faff;
    --color-background-alt: rgba(255, 255, 255, 0.8);
    --color-surface: rgba(255, 255, 255, 0.48);
    --color-surface-alt: rgba(209, 227, 255, 0.24);
    --color-surface-hover: rgba(148, 197, 255, 0.34);
    --color-surface-ring: rgba(148, 197, 255, 0.28);
    --color-text: #0b1120;
    --color-text-soft: rgba(15, 23, 42, 0.74);
    --color-text-muted: rgba(71, 85, 105, 0.68);
    --color-accent: #2563eb;
    --color-border: rgba(255, 255, 255, 0.62);
    --color-border-strong: rgba(148, 197, 255, 0.5);
    --color-glow: rgba(148, 163, 184, 0.24);
    --color-glow-strong: rgba(148, 197, 255, 0.38);
    --color-icon: #1e293b;
    --color-focus-ring: rgba(59, 130, 246, 0.55);
    --glass-drop-shadow: 0 32px 70px rgba(148, 173, 209, 0.36);
    --glass-raised-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), inset 0 -18px 40px rgba(148, 197, 255, 0.36), 0 22px 55px rgba(148, 173, 209, 0.34);
    --glass-card-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), inset 0 -18px 42px rgba(148, 197, 255, 0.28), 0 26px 65px rgba(148, 173, 209, 0.36);
    --glass-hover-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), inset 0 -22px 48px rgba(96, 165, 250, 0.48), 0 30px 70px rgba(148, 173, 209, 0.4);
    --glass-highlight: rgba(255, 255, 255, 0.88);
    --glass-highlight-soft: rgba(255, 255, 255, 0.32);
    --glass-bottom-glow: rgba(148, 197, 255, 0.32);
}
html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    /* background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.1)), url(img/bg-v6.png) no-repeat center center fixed;
    background-size: cover; */
    background-color: var(--color-background);
    background-image: radial-gradient(circle at var(--x) var(--y), hsla(var(--bg-hue), 70%, 55%, 0.35), var(--color-background-alt) 80%);
    background-repeat: no-repeat;
    background-attachment: fixed;

    color: var(--color-text);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: background-color 0.6s ease, color 0.6s ease, background-image 0.6s ease;
}

.background-video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 600ms ease;
    background: #000;
}

body.has-video-background {
    background-image: none;
    background-color: #000;
}

body.has-video-background .background-video {
    opacity: 1;
}

body.has-video-background .background-aurora {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    body.has-video-background .background-video {
        display: none;
    }
}

.background-aurora {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -2;
    mix-blend-mode: screen;
}

.seasonal-effect {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 5;
}

.seasonal-effect--leaves {
    transition: opacity 220ms ease;
}

.seasonal-canvas {
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    opacity: 0.92;
    filter: drop-shadow(0 6px 16px rgba(18, 6, 0, 0.18));
    transform: translateZ(0);
}

[data-theme="light"] .seasonal-canvas {
    opacity: 0.88;
    filter: drop-shadow(0 6px 16px rgba(143, 86, 28, 0.18));
}

@media (prefers-reduced-motion: reduce) {
    .seasonal-effect--leaves {
        display: none;
    }
}

.aurora-dot,
.aurora-gradient,
.aurora-noise {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.aurora-dot {
    width: 520px;
    height: 520px;
    filter: blur(120px);
    opacity: 0.65;
}

.aurora-dot--one {
    top: -12%;
    left: -18%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.55), transparent 70%);
}

.aurora-dot--two {
    bottom: -25%;
    right: -12%;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.55), transparent 70%);
}

.aurora-dot--three {
    top: 28%;
    right: 42%;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.35), transparent 68%);
}

.aurora-gradient {
    background: radial-gradient(120% 160% at 50% 100%, rgba(56, 189, 248, 0.25), transparent 70%);
    filter: blur(80px);
    opacity: 0.6;
}

.aurora-noise {
    mix-blend-mode: soft-light;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><filter id="n" x="0" y="0"><feTurbulence type="fractalNoise" baseFrequency="1.2" numOctaves="3" stitchTiles="stitch"/></filter><rect width="200" height="200" filter="url(%23n)" opacity="0.12"/></svg>');
    background-size: 180px;
    opacity: 0.4;
}

body.pre-interaction #app {
    opacity: 0;
    pointer-events: none;
}

body.page-visible #app {
    opacity: 1;
    pointer-events: auto;
}

#app {
    transition: opacity 1s ease;
}

body.pre-interaction #app *,
body.pre-interaction #app *::before,
body.pre-interaction #app *::after {
    animation-play-state: paused !important;
}

body.pre-interaction .seasonal-effect--leaves {
    opacity: 0;
}

#entry-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2.75rem, 6vw, 4rem) 1.5rem;
    text-align: center;
    background:
        radial-gradient(140% 140% at 12% 18%, rgba(96, 165, 250, 0.2), transparent 65%),
        radial-gradient(120% 150% at 85% 12%, rgba(14, 165, 233, 0.18), transparent 70%),
        linear-gradient(155deg, rgba(5, 12, 24, 0.95), rgba(5, 12, 24, 0.88));
    backdrop-filter: blur(26px) saturate(185%);
    -webkit-backdrop-filter: blur(26px) saturate(185%);
    color: var(--color-text);
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.65s ease, visibility 0s linear 0.65s;
}

#entry-overlay::before,
#entry-overlay::after {
    content: "";
    position: absolute;
    inset: 6%;
    border-radius: 36px;
    border: 1px solid rgba(148, 197, 255, 0.12);
    pointer-events: none;
    opacity: 0.55;
    mix-blend-mode: screen;
    transition: opacity 0.6s ease;
}

#entry-overlay::before {
    background: linear-gradient(160deg, rgba(148, 197, 255, 0.16), rgba(59, 130, 246, 0.06));
}

#entry-overlay::after {
    inset: auto;
    top: 10%;
    left: 8%;
    right: 8%;
    bottom: 12%;
    border-radius: 28px;
    border: none;
    background: radial-gradient(120% 160% at 50% 120%, rgba(59, 130, 246, 0.28), transparent 72%);
    opacity: 0.45;
}

#entry-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

#entry-overlay.hidden .overlay-content {
    opacity: 0;
    transform: translateY(10px) scale(0.99);
}

#entry-overlay .overlay-content {
    position: relative;
    max-width: 460px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.1rem, 2.6vw, 1.6rem);
    padding: clamp(2.1rem, 4.6vw, 3rem);
    border-radius: 28px;
    background:
        linear-gradient(185deg, rgba(12, 18, 35, 0.92), rgba(12, 18, 35, 0.72)),
        linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(59, 130, 246, 0));
    box-shadow: var(--glass-card-shadow);
    border: 1px solid rgba(148, 197, 255, 0.2);
    backdrop-filter: blur(18px) saturate(195%);
    -webkit-backdrop-filter: blur(18px) saturate(195%);
    overflow: hidden;
    transition: opacity 0.6s ease, transform 0.6s ease;
    animation: overlayContentReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#entry-overlay .overlay-content::before,
#entry-overlay .overlay-content::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

#entry-overlay .overlay-content::before {
    background:
        radial-gradient(120% 90% at 12% 0%, rgba(255, 255, 255, 0.3), transparent 65%),
        radial-gradient(110% 120% at 88% 0%, rgba(148, 197, 255, 0.25), transparent 75%);
}

#entry-overlay .overlay-content::after {
    background:
        radial-gradient(120% 140% at 50% 110%, rgba(37, 99, 235, 0.2), transparent 70%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.12), transparent 60%);
    mix-blend-mode: screen;
}

#entry-overlay .overlay-content > * {
    position: relative;
    z-index: 1;
}

#entry-overlay .overlay-title {
    font-size: clamp(1.85rem, 4vw, 2.4rem);
    font-weight: 600;
    letter-spacing: 0.015em;
    margin: 0;
    color: var(--color-text);
    text-shadow: 0 12px 28px rgba(15, 23, 42, 0.45);
}

#entry-overlay .overlay-info {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.7;
    margin: 0;
    text-shadow: 0 8px 22px rgba(15, 23, 42, 0.5);
}

[data-theme="light"] #entry-overlay {
    background:
        radial-gradient(140% 120% at 12% 18%, rgba(148, 197, 255, 0.24), transparent 65%),
        radial-gradient(120% 140% at 85% 12%, rgba(191, 219, 254, 0.2), transparent 70%),
        linear-gradient(150deg, rgba(226, 232, 240, 0.92), rgba(226, 232, 240, 0.88));
    color: var(--color-text);
}

[data-theme="light"] #entry-overlay::before {
    border-color: rgba(148, 197, 255, 0.22);
    background: linear-gradient(160deg, rgba(148, 197, 255, 0.26), rgba(148, 197, 255, 0.08));
    opacity: 0.65;
}

[data-theme="light"] #entry-overlay::after {
    background: radial-gradient(120% 160% at 50% 120%, rgba(148, 197, 255, 0.32), transparent 72%);
    opacity: 0.55;
}

[data-theme="light"] #entry-overlay .overlay-content {
    background:
        linear-gradient(185deg, rgba(255, 255, 255, 0.95), rgba(226, 232, 240, 0.78)),
        linear-gradient(135deg, rgba(191, 219, 254, 0.26), rgba(191, 219, 254, 0));
    border: 1px solid rgba(148, 197, 255, 0.3);
    box-shadow: var(--glass-card-shadow);
}

[data-theme="light"] #entry-overlay .overlay-content::before {
    background:
        radial-gradient(120% 90% at 12% 0%, rgba(255, 255, 255, 0.75), transparent 65%),
        radial-gradient(110% 120% at 88% 0%, rgba(191, 219, 254, 0.32), transparent 75%);
}

[data-theme="light"] #entry-overlay .overlay-content::after {
    background:
        radial-gradient(120% 140% at 50% 110%, rgba(148, 197, 255, 0.28), transparent 70%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.28), transparent 60%);
}

[data-theme="light"] #entry-overlay .overlay-info {
    color: rgba(51, 65, 85, 0.84);
    text-shadow: none;
}

#entry-overlay a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(148, 197, 255, 0.55);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

#entry-overlay.hidden::before,
#entry-overlay.hidden::after {
    opacity: 0;
}

#entry-overlay a:hover,
#entry-overlay a:focus {
    color: #93c5fd;
    text-decoration-color: rgba(147, 197, 253, 0.95);
}

#entry-overlay:focus-visible {
    outline: 2px solid rgba(147, 197, 253, 0.75);
    outline-offset: 6px;
}

@keyframes overlayContentReveal {
    0% {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    60% {
        opacity: 1;
        transform: translateY(-2px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    #entry-overlay,
    #entry-overlay .overlay-content {
        transition: none !important;
        animation: none !important;
    }

    #entry-overlay::before,
    #entry-overlay::after {
        animation: none !important;
    }
}

body.custom-cursor-active,
body.custom-cursor-active * {
    cursor: none !important;
}

:root.theme-transition body::after {
    content: "";
    position: fixed;
    inset: -10%;
    pointer-events: none;
    background: radial-gradient(circle at var(--theme-transition-origin-x) var(--theme-transition-origin-y), var(--color-surface-hover), var(--color-surface) 45%, transparent 75%);
    transform: scale(0.25);
    transform-origin: var(--theme-transition-origin-x) var(--theme-transition-origin-y);
    animation: themeRipple var(--theme-transition-duration) ease-out forwards;
    z-index: 10;
}

@keyframes themeRipple {
    0% {
        opacity: 0.65;
        transform: scale(0.25);
    }
    60% {
        opacity: 0.25;
    }
    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

[v-cloak] {
    display: none;
}

a,
button {
    color: inherit;
    font-family: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

@keyframes rgbColor {
    0% { color: red; }
    33% { color: #00FF7F; } /* Brighter Green */
    66% { color: #5599FF; } /* Brighter Blue */
    100% { color: red; }
}
.content-container {
    background: rgba(7, 18, 36, 0.58);
    padding: clamp(18px, 4vw, 26px);
    border-radius: 26px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    box-shadow: 0 32px 60px rgba(5, 12, 24, 0.32);
    border: 1px solid rgba(148, 197, 255, 0.18);
    position: relative;
    width: min(520px, 90vw);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
    overflow: hidden;
    transition: background-color 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
    z-index: 2;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.16), 0 8px 24px rgba(15, 23, 42, 0.16);
    mix-blend-mode: difference;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0);
    transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
    z-index: 2147483647;
}

/* Hover state adjustments for both visual styling and animated overlay variables */
.content-container:hover {
    border-color: rgba(148, 197, 255, 0.35);
    box-shadow: 0 38px 70px rgba(5, 12, 24, 0.38);
}

.content-container::before,
.content-container::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.content-container::before {
    background: radial-gradient(120% 120% at 15% 0%, rgba(255, 255, 255, 0.28), transparent 72%);
    opacity: 0.55;
}

.content-container::after {
    background: radial-gradient(120% 150% at 50% 110%, rgba(82, 168, 255, 0.22), transparent 70%);
    opacity: 0.4;
}

.content-container:hover::before {
    opacity: 0.68;
}

.content-container:hover::after {
    opacity: 0.52;
}

[data-theme="light"] .content-container {
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(148, 197, 255, 0.35);
    box-shadow: 0 28px 55px rgba(148, 173, 209, 0.28);
}

[data-theme="light"] .content-container::before {
    background: radial-gradient(120% 120% at 18% 0%, rgba(255, 255, 255, 0.7), transparent 78%);
    opacity: 0.62;
}

[data-theme="light"] .content-container::after {
    background: radial-gradient(120% 150% at 50% 110%, rgba(148, 197, 255, 0.35), transparent 72%);
    opacity: 0.5;
}

[data-theme="light"] .content-container:hover {
    border-color: rgba(148, 197, 255, 0.45);
    box-shadow: 0 32px 60px rgba(148, 173, 209, 0.32);
}

.content-container > * {
    position: relative;
    z-index: 1;
}

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

.copyright {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 10px;
    white-space: nowrap;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

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

.copyright a {
    color: var(--color-text-soft);
    text-decoration: none;
    transition: color 0.3s;
}

.copyright a:hover {
    color: var(--color-accent);
}

.profile img {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    border: 2px solid var(--color-border-strong);
    box-shadow: inset 0 1px 0 var(--glass-highlight), 0 20px 45px var(--color-glow), 0 0 0 6px rgba(96, 165, 250, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: bounce 1s ease-out 0.8s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.profile img:hover {
    transform: scale(1.08);
    box-shadow: inset 0 1px 0 var(--glass-highlight), 0 26px 60px var(--color-glow-strong), 0 0 0 8px rgba(148, 197, 255, 0.35);
}

.username {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out 0.8s forwards/*, rgbColor 5s infinite linear*/;
    text-shadow: 0 12px 30px var(--color-glow);
}

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

.bio {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-soft);
    margin-top: 0;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1s forwards;
    text-shadow: 0 10px 25px var(--color-glow);
}

.bio-tags {
    margin-top: 0;
    font-size: 12px;
    color: var(--color-text-muted);
    display: flex;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1.2s forwards;
}

.bio-tags span {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(90, 140, 220, 0.16) 100%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(16, 44, 92, 0.16) 100%);
    padding: 4px 12px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    box-shadow: var(--glass-raised-shadow);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.bio-tags span:hover {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(120, 180, 255, 0.28) 100%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.24) 0%, rgba(28, 98, 180, 0.22) 100%);
    color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: var(--glass-hover-shadow);
}

[data-theme="light"] .bio-tags span {
    background:
        linear-gradient(188deg, rgba(255, 255, 255, 0.68) 0%, rgba(220, 236, 255, 0.48) 58%, rgba(194, 220, 255, 0.24) 100%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.45) 0%, rgba(208, 228, 255, 0.22) 100%);
    border-color: var(--color-border);
    box-shadow: var(--glass-raised-shadow);
}

[data-theme="light"] .bio-tags span:hover {
    background:
        linear-gradient(188deg, rgba(255, 255, 255, 0.76) 0%, rgba(222, 240, 255, 0.6) 58%, rgba(194, 220, 255, 0.32) 100%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.52) 0%, rgba(208, 228, 255, 0.28) 100%);
    border-color: var(--color-border-strong);
}

.social-icons {
    margin-top: 0;
    display: flex;
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 8px; 
}

.social-icons a {
    display: inline-block;
    color: var(--color-icon);
    font-size: 20px;
    text-decoration: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 16px;
    background: rgba(8, 20, 42, 0.55);
    border: 1px solid rgba(148, 197, 255, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 32px rgba(5, 12, 24, 0.28);
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
}

.social-icons a:nth-child(1) { animation-delay: 1.4s; }
.social-icons a:nth-child(2) { animation-delay: 1.5s; }
.social-icons a:nth-child(3) { animation-delay: 1.6s; }
.social-icons a:nth-child(4) { animation-delay: 1.7s; }
.social-icons a:nth-child(5) { animation-delay: 1.8s; }
.social-icons a:nth-child(6) { animation-delay: 1.9s; }
.social-icons a:nth-child(7) { animation-delay: 2.0s; }
.social-icons a:nth-child(8) { animation-delay: 2.1s; }
.social-icons a:nth-child(9) { animation-delay: 2.2s; }
.social-icons a:nth-child(10) { animation-delay: 2.3s; }

.social-icons a:hover {
    background: rgba(59, 130, 246, 0.32);
    color: var(--color-accent);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 22px 40px rgba(5, 12, 24, 0.34);
}

.social-icons a:focus-visible {
    background: rgba(59, 130, 246, 0.38);
    color: var(--color-accent);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 22px 40px rgba(5, 12, 24, 0.34), 0 0 0 4px var(--color-focus-ring);
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.views {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(8, 20, 42, 0.55);
    border: 1px solid rgba(148, 197, 255, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 32px rgba(5, 12, 24, 0.28);
    animation: fadeIn 0.8s ease-out 1s forwards;
    z-index: 3;
    color: var(--color-text-soft);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.view-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.view-count {
    font-weight: 500;
    color: var(--color-text);
}

.view-text {
    display: none;
}

.views i {
    font-size: 16px;
    color: var(--color-text-muted);
}

#theme-toggle {
    background: rgba(8, 20, 42, 0.55);
    border: 1px solid rgba(148, 197, 255, 0.24);
    border-radius: 50%;
    color: var(--color-text);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 32px rgba(5, 12, 24, 0.28);
    text-transform: none;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
}

#theme-toggle i {
    font-size: 16px;
    color: var(--color-icon);
    transition: color 0.3s;
}

#theme-toggle:hover,
#theme-toggle:focus-visible {
    background: rgba(59, 130, 246, 0.32);
    border-color: rgba(148, 197, 255, 0.35);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 24px 40px rgba(5, 12, 24, 0.34);
}

#theme-toggle:hover i,
#theme-toggle:focus-visible i {
    color: var(--color-accent);
}

#theme-toggle:focus-visible {
    box-shadow: 0 24px 40px rgba(5, 12, 24, 0.34), 0 0 0 4px var(--color-focus-ring);
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

[data-theme="light"] .views {
    background: rgba(228, 238, 255, 0.75);
    border-color: rgba(148, 197, 255, 0.35);
    box-shadow: 0 16px 28px rgba(148, 173, 209, 0.26);
    color: rgba(15, 23, 42, 0.65);
}

[data-theme="light"] .social-icons a:hover,
[data-theme="light"] .social-icons a:focus-visible {
    background: rgba(148, 197, 255, 0.45);
    border-color: rgba(59, 130, 246, 0.5);
    color: rgba(15, 23, 42, 0.76);
}

[data-theme="light"] #theme-toggle {
    background: rgba(228, 238, 255, 0.8);
    border-color: rgba(148, 197, 255, 0.4);
    box-shadow: 0 16px 28px rgba(148, 173, 209, 0.28);
    color: rgba(15, 23, 42, 0.72);
}

[data-theme="light"] #theme-toggle:hover,
[data-theme="light"] #theme-toggle:focus-visible {
    background: rgba(148, 197, 255, 0.55);
    border-color: rgba(59, 130, 246, 0.55);
}

[data-theme="light"] .discord-presence {
    background: rgba(228, 238, 255, 0.78);
    border-color: rgba(148, 197, 255, 0.35);
    box-shadow: 0 22px 48px rgba(148, 173, 209, 0.28);
}

[data-theme="light"] .discord-profile,
[data-theme="light"] .blank-box {
    background:
        linear-gradient(188deg, rgba(255, 255, 255, 0.76) 0%, rgba(212, 232, 255, 0.5) 60%, rgba(190, 214, 255, 0.26) 100%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.48) 0%, rgba(204, 226, 255, 0.24) 100%);
    border-color: var(--color-border);
    box-shadow: var(--glass-raised-shadow);
}

@media (max-width: 768px) {
    body {
        align-items: flex-start;
        padding: 32px 18px 48px;
    }
    .content-container {
        padding: 24px;
        border-radius: 26px;
        max-width: 90%;
        margin-bottom: 32px;
    }
    .profile img {
        width: 92px;
        height: 92px;
    }
    .username {
        font-size: 22px;
    }
    .bio {
        font-size: 13px;
    }
    .bio-tags {
        font-size: 11px;
    }
    .social-icons a {
        font-size: 18px;
        width: 38px;
        height: 38px;
        line-height: 38px;
        border-radius: 12px;
    }
    .music-player {
        max-width: 100%;
    }
    .music-player .player-controls {
        width: 100%;
    }
    .copyright {
        font-size: 11px;
    }
}

@media (max-width: 600px) {
    body {
        padding: 28px 16px 40px;
    }
    .content-container {
        padding: 22px 20px;
        border-radius: 22px;
    }
    .views {
        flex-wrap: wrap;
        gap: 0.6rem;
    }
    .profile img {
        width: 84px;
        height: 84px;
    }
    .username {
        font-size: 20px;
    }
    .bio {
        margin-top: 0;
    }
    .bio-tags {
        gap: 8px;
    }
    .music-player {
        padding: 14px 16px;
        gap: 10px;
    }
    .music-player .player-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }
    .music-player .play-pause {
        margin: 0 auto;
    }
    .music-player .progress-wrapper {
        min-width: 0;
        max-width: none;
    }
    .music-player .time-display {
        justify-content: space-between;
        font-size: 0.82rem;
    }
    .music-player .volume-controls {
        justify-content: space-between;
        font-size: 0.9rem;
        width: 100%;
        min-width: 0;
    }
    .music-player .volume-controls i {
        font-size: 1rem;
    }
    .music-player input[type="range"] {
        --range-thumb-size: 20px;
    }
}
.discord-profile {
    background:
        linear-gradient(185deg, rgba(255, 255, 255, 0.24) 0%, rgba(90, 150, 230, 0.18) 70%, rgba(14, 32, 70, 0.24) 100%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.18) 0%, rgba(18, 42, 92, 0.18) 100%);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid var(--color-border);
    border-radius: 22px;
    padding: 1.1rem 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    margin: 1.8rem auto;
    max-width: 420px;
    box-shadow: var(--glass-raised-shadow);
    position: relative;
    overflow: hidden;
}

.discord-profile::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(130% 80% at 0% -10%, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.2) 45%, transparent 80%),
        radial-gradient(120% 110% at 100% 0%, rgba(118, 186, 255, 0.32) 0%, rgba(118, 186, 255, 0.12) 60%, transparent 85%);
    pointer-events: none;
    z-index: 0;
}

.discord-profile > * {
    position: relative;
    z-index: 1;
}

.discord-avatar {
    position: relative;
    width: 60px;
    height: 60px;
}

.discord-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.status-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: rgba(9, 9, 9, 0.95);
    border-radius: 50%;
    padding: 2px;
    border: 2px solid rgba(9, 9, 9, 0.95);
}

.status-dot-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-text-muted);
}

.status-dot.online .status-dot-inner { background: #3ba55c; }
.status-dot.idle .status-dot-inner { background: #faa81a; }
.status-dot.dnd .status-dot-inner { background: #ed4245; }

.discord-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.discord-name-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discord-name {
    color: var(--color-text);
    font-weight: 600;
    font-size: 1rem;
}

.discord-badges {
    display: flex;
    gap: 0.3rem;
}

.discord-badge {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
}

.discord-link {
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.discord-link:hover {
    color: var(--color-text);
    transform: translateY(-2px);
}

.discord-activity {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.discord-link svg {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.discord-link:hover svg {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5))
           drop-shadow(0 0 24px rgba(255, 255, 255, 0.3));
}

.activity-type {
    color: #3ba55c;
    font-weight: 500;
    margin-right: 0.3rem;
}

.activity-name {
    color: var(--color-text);
}

.activity-details {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.2rem;
}

.activity {
    margin-top: 0.8rem;
    display: flex;
    gap: 0.8rem;
    padding: 0.6rem;
    background: linear-gradient(140deg, var(--color-surface) 0%, var(--color-surface-alt) 100%);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    backdrop-filter: blur(16px) saturate(130%);
    -webkit-backdrop-filter: blur(16px) saturate(130%);
    box-shadow: 0 14px 32px var(--color-glow);
    font-size: 0.9rem;
}

.activity-image {
    position: relative;
    width: 60px;
    height: 60px;
}

.activity-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.activity-status {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(9, 9, 9, 0.95);
}

.activity-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.activity-name {
    color: var(--color-text);
    font-weight: 500;
}

.activity-details {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.activity-time {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    margin-top: 0.2rem;
    opacity: 0.8;
}

.blank-box {
    margin: 24px 0;
    padding: 18px;
    background:
        linear-gradient(185deg, rgba(255, 255, 255, 0.22) 0%, rgba(90, 144, 228, 0.14) 65%, rgba(14, 32, 70, 0.2) 100%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.16) 0%, rgba(18, 42, 92, 0.14) 100%);
    border-radius: 18px;
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--color-border);
    box-shadow: var(--glass-raised-shadow);
    position: relative;
    overflow: hidden;
}

.blank-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 10% -20%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 40%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.blank-box > * {
    position: relative;
    z-index: 1;
}

.box-content {
    min-height: 50px;
    width: 100%;
}

.discord-presence {
    background: rgba(8, 20, 42, 0.6);
    border-radius: 24px;
    padding: 16px 20px;
    margin: 10px 0;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(148, 197, 255, 0.22);
    width: fit-content;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease-out 1.5s forwards;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 24px 55px rgba(5, 12, 24, 0.3);
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.discord-presence::before,
.discord-presence::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.discord-presence::before {
    background: radial-gradient(120% 120% at 18% 0%, rgba(255, 255, 255, 0.32), transparent 78%);
    opacity: 0.55;
}

.discord-presence::after {
    background: radial-gradient(120% 140% at 50% 115%, rgba(82, 168, 255, 0.22), transparent 70%);
    opacity: 0.4;
}

.discord-presence > * {
    position: relative;
    z-index: 1;
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.discord-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.discord-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
}

.discord-info {
    display: flex;
    align-items: center;
    gap: 4px;
}

.discord-username {
    color: var(--color-text);
    font-weight: 600;
    font-size: 14px;
}

.discord-discriminator {
    color: var(--color-text-muted);
    font-size: 14px;
}

.discord-activity {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--color-text-muted);
}

.activity-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-text-muted);
    border-radius: 50%;
    transition: background-color 0.6s ease;
}

.activity-text {
    color: var(--color-text-muted);
    transition: color 0.6s ease;
}

.music-player {
    position: relative;
    margin: 12px auto 0;
    padding: clamp(16px, 4.2vw, 22px);
    border-radius: 22px;
    background: rgba(6, 16, 34, 0.6);
    border: 1px solid rgba(148, 197, 255, 0.22);
    box-shadow: 0 24px 55px rgba(5, 12, 24, 0.3);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    max-width: 420px;
    width: 100%;
    display: grid;
    gap: 14px;
    color: var(--color-text);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.music-player::before,
.music-player::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.music-player::before {
    background: radial-gradient(120% 120% at 18% 0%, rgba(255, 255, 255, 0.28), transparent 75%);
    opacity: 0.55;
}

.music-player::after {
    background: radial-gradient(120% 150% at 50% 115%, rgba(82, 168, 255, 0.22), transparent 70%);
    opacity: 0.42;
    transform: scale(1.02);
}

.music-player:hover,
.music-player:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 32px 65px rgba(5, 12, 24, 0.34);
    border-color: rgba(148, 197, 255, 0.32);
}

.music-player:hover::before,
.music-player:focus-within::before {
    opacity: 0.68;
}

.music-player:hover::after,
.music-player:focus-within::after {
    opacity: 0.55;
    transform: scale(1.04);
}

.music-player .track-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-soft);
    text-align: center;
    flex-wrap: wrap;
}

.music-player .track-info i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.25);
    color: var(--color-text);
    font-size: 1rem;
    box-shadow: 0 14px 26px rgba(5, 12, 24, 0.25);
}

.music-player .player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.music-player .play-pause {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(125, 211, 252, 0.85));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 18px 32px rgba(5, 12, 24, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-player .play-pause:hover,
.music-player .play-pause:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(5, 12, 24, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.music-player .play-pause:focus-visible {
    outline: 2px solid var(--color-focus-ring);
    outline-offset: 4px;
}


.music-player .progress-wrapper {
    flex: 1;
    min-width: 220px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: stretch;
}

.music-player .time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

.music-player .time-display span[aria-hidden="true"] {
    opacity: 0.6;
}


.music-player .volume-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.55rem 0.95rem;
    border-radius: 18px;
    background: rgba(8, 20, 42, 0.7);
    border: 1px solid rgba(148, 197, 255, 0.32);
    box-shadow: 0 18px 34px rgba(5, 12, 24, 0.28);
    color: var(--color-text-soft);
    min-width: 165px;
}

.music-player .volume-controls i {
    font-size: 1.1rem;
}

.music-player input[type="range"] {
    --value-percent: 0%;
    --range-track-color: rgba(28, 50, 94, 0.65);
    --range-fill-color: rgba(96, 165, 250, 0.95);
    --range-thumb-size: 18px;
    --range-track-height: 12px;
    --thumb-offset: calc((var(--range-track-height) - var(--range-thumb-size)) / 2);
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: linear-gradient(
        90deg,
        var(--range-fill-color) 0%,
        var(--range-fill-color) var(--value-percent),
        var(--range-track-color) var(--value-percent),
        var(--range-track-color) 100%
    );
    border-radius: 999px;
    height: var(--range-track-height);
    outline: none;
    border: 1px solid rgba(148, 197, 255, 0.25);
    position: relative;
    cursor: pointer;
    box-shadow: inset 0 2px 6px rgba(5, 12, 24, 0.45), 0 6px 14px rgba(5, 12, 24, 0.25);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.music-player input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    background: transparent;
    height: 100%;
}

.music-player input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: var(--range-thumb-size);
    height: var(--range-thumb-size);
    border-radius: 50%;
    background: #f8fafc;
    border: 3px solid rgba(96, 165, 250, 0.95);
    box-shadow: 0 6px 14px rgba(8, 20, 45, 0.45);
    box-sizing: border-box;
    transform: translateY(var(--thumb-offset));
    transform-origin: center;
    transition: transform 0.2s ease;
}

.music-player input[type="range"]::-moz-range-track {
    background: transparent;
    border: none;
}

.music-player input[type="range"]::-moz-range-progress {
    background: transparent;
}

.music-player input[type="range"]::-moz-range-thumb {
    width: var(--range-thumb-size);
    height: var(--range-thumb-size);
    border-radius: 50%;
    background: #f8fafc;
    border: 3px solid rgba(96, 165, 250, 0.95);
    box-shadow: 0 6px 14px rgba(8, 20, 45, 0.45);
    box-sizing: border-box;
    transform: translateY(var(--thumb-offset));
    transform-origin: center;
    transition: transform 0.2s ease;
}

.music-player input[type="range"]:hover,
.music-player input[type="range"]:focus-visible {
    border-color: rgba(148, 197, 255, 0.5);
    box-shadow: inset 0 2px 8px rgba(5, 12, 24, 0.5), 0 10px 22px rgba(8, 20, 45, 0.32);
}

.music-player input[type="range"]:focus-visible {
    outline: 3px solid var(--color-focus-ring);
    outline-offset: 4px;
}

.music-player input[type="range"]::-webkit-slider-thumb:hover,
.music-player input[type="range"]::-webkit-slider-thumb:active,
.music-player input[type="range"]::-moz-range-thumb:hover,
.music-player input[type="range"]::-moz-range-thumb:active {
    transform: translateY(var(--thumb-offset)) scale(1.08);
}

.music-player .progress[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}

[data-theme="light"] .music-player {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(148, 197, 255, 0.32);
    box-shadow: 0 22px 48px rgba(148, 173, 209, 0.28);
}

[data-theme="light"] .music-player::before {
    background: radial-gradient(120% 120% at 20% 0%, rgba(255, 255, 255, 0.72), transparent 78%);
    opacity: 0.58;
}

[data-theme="light"] .music-player::after {
    background: radial-gradient(120% 150% at 50% 112%, rgba(148, 197, 255, 0.32), transparent 72%);
    opacity: 0.5;
}

[data-theme="light"] .music-player .track-info {
    color: rgba(15, 23, 42, 0.75);
}

[data-theme="light"] .music-player .track-info i {
    background: rgba(209, 227, 255, 0.85);
    color: rgba(15, 23, 42, 0.75);
    box-shadow: 0 12px 24px rgba(148, 173, 209, 0.26);
}

[data-theme="light"] .music-player .play-pause {
    background: linear-gradient(135deg, rgba(148, 197, 255, 0.94), rgba(59, 130, 246, 0.9));
    color: #0b1120;
    box-shadow: 0 18px 30px rgba(148, 173, 209, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .music-player .volume-controls {
    background: rgba(226, 236, 255, 0.85);
    border-color: rgba(148, 197, 255, 0.35);
    color: rgba(15, 23, 42, 0.76);
    box-shadow: 0 16px 28px rgba(148, 173, 209, 0.28);
}

[data-theme="light"] .music-player input[type="range"] {
    --range-track-color: rgba(209, 227, 255, 0.75);
    --range-fill-color: rgba(59, 130, 246, 0.85);
    border-color: rgba(148, 197, 255, 0.45);
    box-shadow: inset 0 2px 6px rgba(148, 173, 209, 0.4), 0 6px 18px rgba(148, 173, 209, 0.28);
}

[data-theme="light"] .music-player input[type="range"]::-webkit-slider-thumb,
[data-theme="light"] .music-player input[type="range"]::-moz-range-thumb {
    background: #ffffff;
    border-color: rgba(59, 130, 246, 0.9);
    box-shadow: 0 6px 14px rgba(148, 173, 209, 0.42);
}

#click-to-continue-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

#click-to-continue-text {
    color: var(--color-text);
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.blurred {
    filter: blur(10px);
    pointer-events: none;
}

.fade-out {
    opacity: 0;
    pointer-events: none;
}
