* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.03) 0%, transparent 50%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none;
    box-sizing: border-box;
    position: relative;
}

.background-photos-container {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-photo {
    position: absolute;
    width: 220px;
    height: 390px;
    object-fit: cover;
    opacity: 0.14;
    filter: saturate(1.1) contrast(1.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
    pointer-events: none;
}

.photo-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    display: flex;
    flex-direction: column;
}

.photo-strip .floating-photo {
    position: relative;
    width: 100%;
    height: 390px;
}

/* Hide cursor on mobile devices */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .cursor-trail-heart,
    .cursor-heart,
    .cursor-dot,
    .cursor-sparkle,
    .cursor-particle,
    #cursor-dot,
    #cursor-trail {
        display: none !important;
    }
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    background-image:
        radial-gradient(circle at 50% 40%, rgba(56, 189, 248, 0.06) 0%, transparent 55%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    cursor: pointer;
    overflow: hidden;
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.35;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.12);
        opacity: 0.55;
    }
}

.loading-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 1;
}

.click-text {
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: lowercase;
    cursor: pointer;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, rgba(186, 230, 253, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease, filter 0.3s ease;
    animation: loadingTextBreathe 3s ease-in-out infinite;
}

.loading-screen:hover .click-text,
.click-text:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.25));
}

.loading-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: lowercase;
    animation: fadeIn 1s ease-out 0.25s both;
    position: relative;
}

.loading-subtitle::before,
.loading-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: rgba(56, 189, 248, 0.25);
    transform: translateY(-50%);
}

.loading-subtitle::before {
    left: -36px;
}

.loading-subtitle::after {
    right: -36px;
}

.loading-indicator {
    margin-top: 24px;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.loading-dots span {
    width: 6px;
    height: 6px;
    background: rgba(56, 189, 248, 0.35);
    border-radius: 50%;
    animation: loadingDots 1.6s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.24s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.12s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0s;
}

@keyframes loadingDots {
    0%, 80%, 100% {
        transform: scale(0.85);
        opacity: 0.35;
    }
    40% {
        transform: scale(1.15);
        opacity: 0.9;
    }
}

@keyframes loadingTextBreathe {
    0%, 100% {
        opacity: 0.85;
    }
    50% {
        opacity: 1;
    }
}

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

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

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

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

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

/* Confetti Particles */
.confetti-particle {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    animation: confettiFall 2s ease-out forwards;
}

@keyframes confettiFall {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(var(--vx, 0), var(--vy, 0)) rotate(720deg);
        opacity: 0;
    }
}

/* Secret Message */
#secret-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: 600;
    color: #e0f2fe;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.9);
    z-index: 10001;
    animation: secretPulse 0.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes secretPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Minigame Styles */
#game-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10000;
    pointer-events: auto;
    cursor: default;
}

#minigame-ui {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(24, 24, 24, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 18px 20px;
    z-index: 10003;
    width: 280px;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 0px 0;
}

.game-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.game-score {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.game-instructions {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 8px 0 0 0;
    line-height: 1.4;
}


.game-target {
    position: fixed;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.9) 0%, rgba(56, 189, 248, 0.6) 50%, transparent 100%);
    border: 3px solid rgba(56, 189, 248, 1);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10004;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.9);
    animation: targetPulse 1s ease-in-out infinite;
    transition: transform 0.1s ease;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto;
}

.game-target:hover {
    transform: scale(1.1);
}

.game-target:active {
    transform: scale(0.9);
}

@keyframes targetPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(56, 189, 248, 0.9);
    }
    50% {
        box-shadow: 0 0 50px rgba(56, 189, 248, 1);
    }
}

/* Fade in animation */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

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

/* Custom Cursor */
* {
    cursor: none !important;
}

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

.cursor-heart {
    position: fixed;
    width: 18px;
    height: 18px;
    pointer-events: none;
    z-index: 10002;
    color: #38bdf8;
    transform-origin: center center;
    transition: opacity 0.2s ease;
    will-change: transform;
}

.cursor-heart-glow {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.28) 0%, rgba(14, 165, 233, 0.08) 45%, transparent 72%);
    animation: cursorHeartGlow 1.2s ease-in-out infinite;
    pointer-events: none;
}

.cursor-heart-icon {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
    filter: drop-shadow(0 0 3px rgba(56, 189, 248, 0.55)) drop-shadow(0 0 6px rgba(14, 165, 233, 0.25));
    animation: cursorHeartBeat 1.2s ease-in-out infinite;
}

@keyframes cursorHeartBeat {
    0%, 100% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.18);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.1);
    }
    56% {
        transform: scale(1);
    }
}

@keyframes cursorHeartGlow {
    0%, 100% {
        opacity: 0.35;
        transform: scale(0.94);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.04);
    }
}

.cursor-trail-heart {
    position: absolute;
    width: 8px;
    height: 8px;
    color: rgba(125, 211, 252, 0.9);
    pointer-events: none;
    animation: cursorTrailHeart var(--sparkle-duration, 0.7s) ease-out forwards;
}

.cursor-trail-heart svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
    filter: drop-shadow(0 0 4px rgba(56, 189, 248, 0.65));
}

@keyframes cursorTrailHeart {
    0% {
        opacity: 0.95;
        transform: scale(0.7) translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: scale(0.15) translate(var(--drift-x, 0), var(--drift-y, 0));
    }
}

.cursor-sparkle {
    position: absolute;
    width: var(--sparkle-size, 3px);
    height: var(--sparkle-size, 3px);
    background: #bae6fd;
    border-radius: 1px;
    pointer-events: none;
    transform: rotate(45deg);
    box-shadow:
        0 0 4px rgba(125, 211, 252, 0.9),
        0 0 10px rgba(56, 189, 248, 0.45);
    animation: cursorSparkle var(--sparkle-duration, 0.7s) ease-out forwards;
}

@keyframes cursorSparkle {
    0% {
        opacity: 1;
        transform: rotate(45deg) scale(1) translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) scale(0.2) translate(var(--drift-x, 0), var(--drift-y, 0));
    }
}

/* Ambient Background Glows */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.glow-corner {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    animation: ambientGlow 15s ease-in-out infinite;
}

.glow-1 {
    top: -250px;
    left: -250px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.14) 0%, rgba(56, 189, 248, 0.08) 20%, rgba(56, 189, 248, 0.04) 50%, transparent 80%);
    animation-delay: 0s;
}

.glow-2 {
    top: -250px;
    right: -250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.13) 0%, rgba(59, 130, 246, 0.08) 20%, rgba(59, 130, 246, 0.035) 50%, transparent 80%);
    animation-delay: 3.75s;
}

.glow-3 {
    bottom: -250px;
    left: -250px;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.6) 0%, rgba(30, 64, 175, 0.5) 25%, rgba(37, 99, 235, 0.2) 55%, transparent 85%);
    animation-delay: 7.5s;
}

.glow-4 {
    bottom: -250px;
    right: -250px;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.5) 0%, rgba(30, 64, 175, 0.45) 25%, rgba(37, 99, 235, 0.18) 55%, transparent 85%);
    animation-delay: 11.25s;
}

@keyframes ambientGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.85;
    }
}

.glow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(150px);
    animation: centerGlow 20s ease-in-out infinite;
}

.glow-center-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.06) 0%, rgba(56, 189, 248, 0.035) 30%, rgba(56, 189, 248, 0.018) 60%, transparent 90%);
    animation-delay: 0s;
}

.glow-center-2 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.4) 0%, rgba(30, 64, 175, 0.25) 30%, rgba(37, 99, 235, 0.12) 60%, transparent 90%);
    animation-delay: 10s;
}

@keyframes centerGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.5;
    }
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 32px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Profile Section */
.profile-section {
    text-align: center;
    width: 100%;
}

.profile-picture {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto 12px;
}

.profile-picture::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.35) 0%, rgba(37, 99, 235, 0.25) 40%, rgba(15, 23, 42, 0.2) 70%, transparent 100%);
    z-index: -1;
    filter: blur(20px);
    opacity: 0.6;
    animation: profileGlow 4s ease-in-out infinite;
}

.profile-picture::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.35), rgba(37, 99, 235, 0.32), rgba(15, 23, 42, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(12px);
}

.profile-picture:hover::after {
    opacity: 0.6;
}

@keyframes profileGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.profile-picture img {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.08);
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.profile-picture img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.profile-picture img:hover {
    transform: scale(1.03);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.profile-picture img:hover::before {
    opacity: 1;
}

/* Discord Badges */
.badges {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    min-height: 28px; /* Ensure space for badges */
}

.badge {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
    position: relative;
}

.badge::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.badge:hover {
    transform: scale(1.12) translateY(-1px);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.badge:hover::after {
    opacity: 1;
}

.username-wrap {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 18px;
    padding: 4px 12px 14px;
    cursor: pointer;
    position: relative;
}

.username {
    font-size: 28px;
    font-weight: 600;
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    color: #ffffff;
    position: relative;
    text-align: center;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 4px 2px;
    pointer-events: none;
}

.username::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.55) 0%, rgba(14, 165, 233, 0.2) 45%, transparent 72%);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: blur(6px);
    pointer-events: none;
}

.username::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: calc(100% + 8px);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #38bdf8 20%,
        #7dd3fc 50%,
        #0ea5e9 80%,
        transparent 100%
    );
    background-size: 220% 100%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 0 10px rgba(56, 189, 248, 0.75),
        0 0 22px rgba(14, 165, 233, 0.35);
    pointer-events: none;
}

.username:hover,
.username-wrap:hover .username {
    transform: translateY(-2px) scale(1.02);
    filter: drop-shadow(0 0 14px rgba(56, 189, 248, 0.35));
}

.username:hover::before,
.username-wrap:hover .username::before {
    transform: translateX(-50%) scaleX(1);
}

.username:hover::after,
.username-wrap:hover .username::after {
    transform: translateX(-50%) scaleX(1);
    animation: usernameUnderlineFlow 2.2s linear infinite;
}

@keyframes usernameUnderlineFlow {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Status Indicators */
.status-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-dot.purple { background: #9c27b0; }
.status-dot.green { background: #4caf50; }
.status-dot.red { background: #f44336; }
.status-dot.blue { background: #2196f3; }
.status-dot.pink { background: #e91e63; }

.status-icon.monitor {
    width: 16px;
    height: 12px;
    background: #f44336;
    border-radius: 2px;
    position: relative;
}

.status-icon.monitor::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 3px;
    background: #f44336;
    border-radius: 0 0 2px 2px;
}

/* Featured Song Player */
.featured-song {
    width: 100%;
    margin-bottom: 22px;
    position: relative;
}


.song-player {
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.song-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.6s ease;
}

.song-player:hover::before {
    left: 100%;
}

.song-player:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.song-cover {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 9px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.9) 0%, rgba(58, 58, 58, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-placeholder {
    font-size: 24px;
    opacity: 0.6;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.song-cover:hover {
    transform: scale(1.06);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.song-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.song-info {
    flex: 1;
}

.song-label {
    font-size: 10px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.featured-icon {
    font-size: 12px;
    filter: brightness(1.2);
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1.2);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.5);
    }
}

.song-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.song-artist {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-weight: 400;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 10px;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.progress-bar {
    position: relative;
    height: 4px;
    background: #333;
    border-radius: 2px;
    cursor: pointer;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #1db954, #1ed760);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.progress-bar:hover .progress-handle {
    opacity: 1;
}

.song-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.control-btn {
    width: 32px;
    height: 32px;
    background: #333;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: #555;
    transform: scale(1.05);
}

.control-btn svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 10px;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #1db954, #1ed760);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.progress-bar:hover .progress-handle {
    opacity: 1;
}

.spotify-link {
    width: 40px;
    height: 40px;
    background: #1db954;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.spotify-link:hover {
    background: #1ed760;
    transform: scale(1.05);
}

.spotify-link svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-btn:hover {
    transform: translate3d(0, -2px, 0) scale(1.03);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.social-btn:hover::before {
    opacity: 0.5;
}

.social-btn svg {
    display: block;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

/* Instagram - Pink/Purple gradient */
.social-btn.instagram {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.15) 0%, rgba(188, 24, 136, 0.1) 100%);
    border-color: rgba(225, 48, 108, 0.2);
}

.social-btn.instagram:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2) 0%, rgba(188, 24, 136, 0.12) 100%);
    border-color: rgba(225, 48, 108, 0.3);
    box-shadow: 0 4px 16px rgba(225, 48, 108, 0.2);
}

.social-btn.instagram svg {
    color: #E4405F;
    filter: drop-shadow(0 0 4px rgba(225, 48, 108, 0.5));
}

/* Twitch - Purple gradient */
.social-btn.twitch {
    background: linear-gradient(135deg, rgba(145, 70, 255, 0.15) 0%, rgba(100, 65, 165, 0.1) 100%);
    border-color: rgba(145, 70, 255, 0.2);
}

.social-btn.twitch:hover {
    background: linear-gradient(135deg, rgba(145, 70, 255, 0.2) 0%, rgba(100, 65, 165, 0.12) 100%);
    border-color: rgba(145, 70, 255, 0.3);
    box-shadow: 0 4px 16px rgba(145, 70, 255, 0.2);
}

.social-btn.twitch svg {
    color: #9146FF;
    filter: drop-shadow(0 0 4px rgba(145, 70, 255, 0.5));
}

/* X - Monochrome gradient */
.social-btn.x {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(180, 180, 180, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.15);
}

.social-btn.x:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(180, 180, 180, 0.12) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.social-btn.x svg {
    color: #ffffff;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

/* Discord Servers */
.discord-servers {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.server-card {
    background: rgba(24, 24, 24, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.server-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.07) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.server-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, transparent 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}


.server-card:hover {
    background: rgba(28, 28, 28, 0.7);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Server with pink accent (first server) */
.server-card.server-pink::before {
    background: radial-gradient(circle, rgba(56, 189, 248, 0.17) 0%, transparent 70%);
}

.server-card.server-pink:hover {
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 
        0 8px 32px rgba(15, 23, 42, 0.8),
        0 0 20px rgba(56, 189, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.server-card.server-pink:hover::before {
    opacity: 1;
}

/* Server with red accent (second server) */
.server-card.server-red::before {
    background: radial-gradient(circle, rgba(15, 23, 42, 0.5) 0%, transparent 75%);
}

.server-card.server-red:hover {
    border-color: rgba(15, 23, 42, 0.8);
    box-shadow: 
        0 8px 32px rgba(15, 23, 42, 0.8),
        0 0 20px rgba(15, 23, 42, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.server-card.server-red:hover::before {
    opacity: 1;
}

.server-card:hover::after {
    opacity: 1;
}


.server-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.server-card:hover .server-icon {
    border-color: #555;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

.server-info {
    flex: 1;
}

.server-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ffffff;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
}

.server-card:hover .server-name {
    color: #ffffff;
}

.server-stats {
    display: flex;
    gap: 12px;
    font-size: 13px;
}

.server-stat {
    display: flex;
    align-items: center;
    gap: 5px;
}

.server-stat.online {
    color: #4caf50;
}

.server-stat.members {
    color: #888;
}

.server-stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.server-stat-dot.online {
    background: #4caf50;
}

.server-stat-dot.members {
    background: #666;
}

/* LunaRP Shop */
.shop-section {
    width: 100%;
    margin-top: 0px;
}

.shop-card {
    background: rgba(24, 24, 24, 0.6);
    border: 2px dashed rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.shop-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.shop-card:hover {
    background: rgba(28, 28, 28, 0.7);
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 
        0 8px 32px rgba(15, 23, 42, 0.8),
        0 0 20px rgba(56, 189, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.shop-card:hover::before {
    opacity: 1;
}

.shop-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.24) 0%, rgba(37, 99, 235, 0.24) 100%);
    border: 1px solid rgba(56, 189, 248, 0.35);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.shop-card:hover .shop-icon {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.32) 0%, rgba(37, 99, 235, 0.34) 100%);
    border-color: rgba(56, 189, 248, 0.6);
    transform: scale(1.03);
}

.shop-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.shop-info {
    flex: 1;
}

.shop-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.shop-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.shop-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-arrow svg {
    width: 20px;
    height: 20px;
    color: #888;
    transition: transform 0.3s ease;
}

.shop-card:hover .shop-arrow svg {
    transform: translateX(4px);
}

/* Remove footer styles - footer removed */

/* Responsive Design */
@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 30px 16px;
        gap: 24px;
    }
    
    /* Loading screen */
    .loading-screen::before {
        width: 300px;
        height: 300px;
    }
    
    .click-text {
        font-size: 42px;
        letter-spacing: 2px;
    }
    
    .loading-subtitle {
        font-size: 14px;
    }
    
    /* Profile section */
    .profile-picture img {
        width: 110px;
        height: 110px;
    }
    
    .profile-picture::before {
        width: 130px;
        height: 130px;
    }
    
    .username-wrap {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .username {
        font-size: 28px;
    }
    
    .badges {
        margin-bottom: 20px;
        gap: 6px;
    }
    
    .badge {
        width: 22px;
        height: 22px;
    }
    
    /* Featured song */
    .featured-song {
        margin-bottom: 24px;
    }
    
    .song-player {
        padding: 12px;
        gap: 12px;
    }
    
    .song-cover {
        width: 56px;
        height: 56px;
    }
    
    .song-name {
        font-size: 14px;
    }
    
    .song-artist {
        font-size: 11px;
    }
    
    .song-label {
        font-size: 9px;
    }
    
    /* Social links */
    .social-links {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .social-btn {
        width: 56px;
        height: 56px;
    }
    
    .social-btn svg {
        width: 24px;
        height: 24px;
    }
    
    /* Discord servers */
    .discord-servers {
        gap: 12px;
    }
    
    .server-card {
        padding: 16px;
        gap: 12px;
    }
    
    .server-icon {
        width: 44px;
        height: 44px;
    }
    
    .server-name {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .server-stats {
        gap: 12px;
        font-size: 12px;
    }
    
    /* Shop section */
    .shop-card {
        padding: 16px;
        gap: 12px;
    }
    
    .shop-icon {
        width: 44px;
        height: 44px;
    }
    
    .shop-title {
        font-size: 16px;
    }
    
    .shop-description {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    /* Container adjustments */
    .container {
        padding: 24px 14px;
        gap: 20px;
    }
    
    /* Loading screen */
    .loading-screen::before {
        width: 250px;
        height: 250px;
    }
    
    .click-text {
        font-size: 36px;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }
    
    .loading-subtitle {
        font-size: 13px;
    }
    
    /* Profile section */
    .profile-picture img {
        width: 100px;
        height: 100px;
    }
    
    .profile-picture::before {
        width: 120px;
        height: 120px;
    }
    
    .username-wrap {
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .username {
        font-size: 26px;
    }
    
    .badges {
        margin-bottom: 18px;
        gap: 5px;
    }
    
    .badge {
        width: 20px;
        height: 20px;
    }
    
    /* Featured song */
    .featured-song {
        margin-bottom: 20px;
    }
    
    .song-player {
        padding: 10px;
        gap: 10px;
        border-radius: 14px;
    }
    
    .song-cover {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }
    
    .song-name {
        font-size: 13px;
        margin-bottom: 2px;
    }
    
    .song-artist {
        font-size: 10px;
    }
    
    .song-label {
        font-size: 8px;
        margin-bottom: 3px;
    }
    
    /* Social links */
    .social-links {
        gap: 10px;
    }
    
    .social-btn {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }
    
    .social-btn svg {
        width: 22px;
        height: 22px;
    }
    
    /* Discord servers */
    .discord-servers {
        gap: 10px;
    }
    
    .server-card {
        padding: 14px;
        gap: 10px;
        border-radius: 14px;
    }
    
    .server-icon {
        width: 40px;
        height: 40px;
    }
    
    .server-name {
        font-size: 15px;
        margin-bottom: 5px;
    }
    
    .server-stats {
        gap: 10px;
        font-size: 11px;
    }
    
    /* Shop section */
    .shop-card {
        padding: 14px;
        gap: 10px;
        border-radius: 14px;
    }
    
    .shop-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .shop-title {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .shop-description {
        font-size: 11px;
    }
    
    .shop-arrow {
        width: 20px;
        height: 20px;
    }
    
    .shop-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    /* Glow effects - smaller on phones */
    .glow-corner {
        width: 150px;
        height: 150px;
    }
    
    .glow-center {
        width: 120px;
        height: 120px;
    }
}

/* Hide minigames on mobile - they're not meant to be used on phones */
@media (max-width: 768px) {
    #minigame-ui,
    #target-ball {
        display: none !important;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
