/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #1a1a1a;
    color: #fff;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    position: relative;
    cursor: none;
}

 /* ========================================
    LOADING INTRO SCREEN
    ======================================== */
 .loading-intro {
     position: fixed;
     inset: 0;
     background: #fc9fbd;
     z-index: 10000;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 1;
     transition: opacity 0.8s ease, filter 0.8s ease;
     overflow: hidden;
 }

 .loading-intro.fade-out {
     opacity: 0;
     filter: blur(6px);
 }

 .floating-cutes {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     pointer-events: none;
     overflow: hidden;
 }

 .floating-cute {
     position: absolute;
     width: clamp(56px, 9vw, 96px);
     height: auto;
     opacity: 0;
     pointer-events: none;
     will-change: opacity, transform;
     transition: opacity 0.7s ease-in-out;
     mix-blend-mode: lighten;
     transform: translate3d(0, 0, 0);
     user-select: none;
 }

 .floating-cute.visible {
     opacity: var(--cute-opacity, 0.85);
     animation: cute-drift 4s ease-in-out infinite alternate;
 }

 .floating-cute.hiding {
     opacity: 0;
 }

 @keyframes cute-drift {
     0% {
         transform: translate3d(0, 0, 0) rotate(var(--cute-rotate, 0deg));
     }
     100% {
         transform: translate3d(var(--drift-x, 12px), var(--drift-y, 12px), 0) rotate(var(--cute-rotate-end, 8deg));
     }
 }

 .loading-intro-content {
     position: relative;
     z-index: 1;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 28px;
     animation: loading-fade-in 1s ease forwards;
 }

 @keyframes loading-fade-in {
     from {
         opacity: 0;
         transform: translateY(10px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .loading-intro-text {
     font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
     font-size: 28px;
     font-weight: 300;
     color: #ffffff;
     letter-spacing: 0.3em;
     text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.15);
 }

 .loading-bar-track {
     width: 200px;
     height: 2px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 2px;
     overflow: hidden;
     position: relative;
 }

 .loading-bar-fill {
     width: 0%;
     height: 100%;
     background: #ffffff;
     border-radius: 2px;
     box-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 0 16px rgba(255, 255, 255, 0.3);
     transition: width 0.1s linear;
 }

 /* ========================================
    PREMIUM HUD INTRO OVERLAY
    ======================================== */
 .intro-overlay {
     position: fixed;
     inset: 0;
     background: #000000;
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: default;
     opacity: 1;
     transition: opacity 520ms ease;
     overflow: hidden;
 }

 .intro-bg-video {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     z-index: 0;
     pointer-events: none;
 }

 /* Film Grain */
 .intro-overlay::before {
     content: '';
     position: fixed;
     inset: 0;
     background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" result="noise"/></filter><rect width="100" height="100" fill="white" filter="url(%23noise)" opacity="0.02"/></svg>');
     pointer-events: none;
     z-index: 1;
     animation: grain-shift 8s linear infinite;
 }

 @keyframes grain-shift {
     0% { transform: translate(0, 0); }
     100% { transform: translate(100px, 100px); }
 }

 /* HUD Grid Background */
 .hud-grid {
     position: absolute;
     inset: 0;
     background-image:
         radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
     background-size: 40px 40px;
     pointer-events: none;
     z-index: 2;
 }

 /* HUD Corner Brackets */
 .hud-corner {
     position: absolute;
     width: 40px;
     height: 40px;
     border: 1px solid rgba(252, 159, 189, 0.45);
     pointer-events: none;
     z-index: 3;
 }

 .hud-corner-tl {
     top: 40px;
     left: 40px;
     border-right: none;
     border-bottom: none;
 }

 .hud-corner-tr {
     top: 40px;
     right: 40px;
     border-left: none;
     border-bottom: none;
 }

 .hud-corner-bl {
     bottom: 40px;
     left: 40px;
     border-right: none;
     border-top: none;
 }

 .hud-corner-br {
     bottom: 40px;
     right: 40px;
     border-left: none;
     border-top: none;
 }

 
 /* Scanning Lines */
 .hud-scanlines {
     position: absolute;
     inset: 0;
     background: repeating-linear-gradient(
         0deg,
         rgba(255, 255, 255, 0.03) 0px,
         rgba(255, 255, 255, 0.03) 1px,
         transparent 1px,
         transparent 2px
     );
     pointer-events: none;
     z-index: 5;
     animation: scanlines-move 8s linear infinite;
 }

 @keyframes scanlines-move {
     0% { transform: translateY(0); }
     100% { transform: translateY(10px); }
 }

 .intro-overlay.fade-out {
     opacity: 0;
     animation: overlay-fade-out 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
     pointer-events: none;
 }

 .intro-overlay.reveal {
     animation: overlay-fade-in 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
     pointer-events: auto;
 }

 @keyframes overlay-fade-out {
     0% {
         opacity: 1;
         backdrop-filter: blur(0px);
     }
     100% {
         opacity: 0;
         backdrop-filter: blur(2px);
     }
 }

 @keyframes overlay-fade-in {
     0% {
         opacity: 0;
         backdrop-filter: blur(10px);
     }
     100% {
         opacity: 1;
         backdrop-filter: blur(0px);
     }
 }

 .intro-overlay.fade-out .intro-overlay-inner {
     animation: intro-text-exit 400ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
 }

 .intro-overlay.reveal .intro-overlay-inner {
     animation: intro-text-reveal 450ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
 }

 /* Center Content */
 .intro-overlay-inner {
     position: relative;
     z-index: 10;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 24px;
     animation: intro-content-fade-in 1.2s ease forwards;
 }

 @keyframes intro-content-fade-in {
     from {
         opacity: 0;
         transform: translateY(20px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Pixel heart (replaces 337) */
 .intro-pixel-heart {
     width: min(220px, 42vw);
     height: auto;
     display: flex;
     align-items: center;
     justify-content: center;
     animation: heart-breathe 3.2s ease-in-out infinite;
     filter:
         drop-shadow(0 0 0 #1a0a10)
         drop-shadow(0 2px 0 rgba(0, 0, 0, 0.55))
         drop-shadow(0 0 18px rgba(252, 159, 189, 0.65))
         drop-shadow(0 0 40px rgba(252, 159, 189, 0.35));
 }

 .intro-pixel-heart svg {
     width: 100%;
     height: auto;
     display: block;
     overflow: visible;
 }

 @keyframes heart-breathe {
     0%, 100% {
         transform: scale(1);
         filter:
             drop-shadow(0 0 0 #1a0a10)
             drop-shadow(0 2px 0 rgba(0, 0, 0, 0.55))
             drop-shadow(0 0 18px rgba(252, 159, 189, 0.65))
             drop-shadow(0 0 40px rgba(252, 159, 189, 0.35));
     }
     50% {
         transform: scale(1.06);
         filter:
             drop-shadow(0 0 0 #1a0a10)
             drop-shadow(0 2px 0 rgba(0, 0, 0, 0.55))
             drop-shadow(0 0 28px rgba(252, 159, 189, 0.85))
             drop-shadow(0 0 55px rgba(252, 159, 189, 0.45));
     }
 }

 /* Legacy 337 number kept hidden if present */
 .intro-number {
     display: none;
 }

 @import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Outfit:wght@300;400;500;600&family=Quicksand:wght@400;500;600;700&display=swap');

 /* Text */
 .intro-enter-text {
     font-family: 'Outfit', 'Quicksand', sans-serif;
     color: #fc9fbd;
     text-transform: none;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 6px;
     cursor: default;
 }

 .enter-text-eyebrow {
     font-family: 'Outfit', 'Quicksand', sans-serif;
     font-weight: 500;
     font-size: 11px;
     letter-spacing: 0.42em;
     text-transform: uppercase;
     color: #ffe0ec;
     text-shadow:
         0 1px 0 rgba(0, 0, 0, 0.75),
         0 0 12px rgba(252, 159, 189, 0.55);
 }

 .enter-text-label {
     display: block;
     font-family: 'Great Vibes', cursive;
     font-weight: 400;
     font-size: clamp(52px, 9vw, 78px);
     line-height: 1;
     letter-spacing: 0.04em;
     color: #ffd0e2;
     -webkit-text-stroke: 0.5px rgba(90, 20, 45, 0.35);
     text-shadow:
         0 2px 0 rgba(60, 10, 30, 0.55),
         0 0 18px rgba(252, 159, 189, 0.85),
         0 0 36px rgba(255, 140, 190, 0.45),
         0 0 2px rgba(255, 255, 255, 0.35);
     transition: letter-spacing 280ms ease-out, text-shadow 280ms ease-out, transform 280ms ease-out, filter 280ms ease-out;
     cursor: pointer;
 }

 .enter-text-label:hover {
     letter-spacing: 0.08em;
     transform: scale(1.05);
     filter: brightness(1.08);
     text-shadow:
         0 2px 0 rgba(60, 10, 30, 0.65),
         0 0 24px rgba(252, 159, 189, 1),
         0 0 48px rgba(255, 140, 190, 0.55),
         0 0 3px rgba(255, 255, 255, 0.45);
 }

 .enter-text-underline {
     display: block;
     width: 0%;
     max-width: 160px;
     height: 2px;
     margin-top: 4px;
     background: linear-gradient(90deg, transparent, #fc9fbd, transparent);
     border-radius: 999px;
     box-shadow: 0 0 10px rgba(252, 159, 189, 0.75);
     transition: width 280ms ease-out;
 }

 .enter-text-label:hover + .enter-text-underline {
     width: 100%;
 }

 .intro-subtitle {
     font-family: 'Outfit', 'Quicksand', sans-serif;
     font-weight: 400;
     font-size: 13px;
     letter-spacing: 0.22em;
     color: #ffe4ef;
     text-transform: none;
     text-shadow:
         0 1px 0 rgba(0, 0, 0, 0.7),
         0 0 12px rgba(252, 159, 189, 0.5);
     transition: all 250ms ease-out;
 }

 /* Intro video play / pause */
 .intro-video-controls {
     margin-top: 102px;
     display: flex;
     align-items: center;
     justify-content: center;
     animation: intro-content-fade-in 1.2s ease 0.2s forwards;
     opacity: 0;
 }

 .intro-control-btn {
     background: none;
     border: none;
     color: #fc9fbd;
     cursor: none;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     transition: all 180ms ease;
     padding: 8px 12px;
     font-family: 'Outfit', 'Quicksand', sans-serif;
     font-size: 22px;
     font-weight: 300;
     letter-spacing: 3px;
     text-shadow:
         0 1px 0 rgba(0, 0, 0, 0.85),
         0 0 10px rgba(252, 159, 189, 0.55);
     position: relative;
     z-index: 12;
 }

 .intro-control-btn:hover {
     color: #ffc0d4;
     transform: scale(1.08);
     text-shadow:
         0 1px 0 rgba(0, 0, 0, 0.9),
         0 0 16px rgba(252, 159, 189, 0.8),
         0 0 32px rgba(252, 159, 189, 0.35);
 }

 .intro-control-btn:active {
     transform: scale(1);
 }

 .intro-control-btn .btn-icon {
     font-size: 22px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-width: 1.2em;
 }

 @keyframes intro-text-exit {
     0% {
         opacity: 1;
         transform: scale(1);
     }
     100% {
         opacity: 0;
         transform: scale(0.95);
     }
 }

 @keyframes intro-text-reveal {
     0% {
         opacity: 0;
         transform: scale(1.02);
     }
     100% {
         opacity: 1;
         transform: scale(1);
     }
 }

 .intro-particles {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     opacity: 0.6;
 }

 /* Floating Names */
 .floating-names {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
     pointer-events: none;
     overflow: hidden;
 }

 .floating-name {
     position: absolute;
     font-family: 'Outfit', 'Quicksand', sans-serif;
     font-weight: 500;
     color: #fc9fbd;
     letter-spacing: 0.06em;
     white-space: nowrap;
     -webkit-text-stroke: 0.35px rgba(20, 5, 10, 0.75);
     text-shadow:
         0 1px 0 rgba(0, 0, 0, 0.9),
         0 -1px 0 rgba(0, 0, 0, 0.55),
         1px 0 0 rgba(0, 0, 0, 0.55),
         -1px 0 0 rgba(0, 0, 0, 0.55),
         0 0 10px rgba(252, 159, 189, 0.75),
         0 0 20px rgba(252, 159, 189, 0.35);
     will-change: opacity, transform;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.7s ease-in-out;
     transform: translate3d(0, 0, 0);
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
 }

 .floating-name.visible {
     opacity: var(--name-opacity, 0.95);
     animation: name-drift 4s ease-in-out infinite alternate;
 }

 .floating-name.hiding {
     opacity: 0;
 }

 @keyframes name-drift {
     0% {
         transform: translate3d(0, 0, 0);
     }
     100% {
         transform: translate3d(var(--drift-x, 10px), var(--drift-y, 10px), 0);
     }
 }

 .intro-overlay-inner {
     position: relative;
     z-index: 1;
     padding: 24px;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 16px;
     animation: intro-fade-in 1.5s ease forwards;
 }

 @keyframes intro-fade-in {
     from {
         opacity: 0;
         transform: translateY(20px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @media (prefers-reduced-motion: reduce) {
     .intro-enter-text {
         animation: none;
     }
     .intro-overlay {
         transition: none;
     }
     .page {
         transition: none;
     }
 }

 .page {
     position: relative;
     z-index: 1;
     width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 40px 20px;
     opacity: 0;
     transform: scale(0.98);
 }

 .page.visible {
     animation: page-entrance 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
 }

 .page.exit {
     animation: page-exit 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
     filter: blur(10px);
     pointer-events: none;
 }

 @keyframes page-entrance {
     0% {
         opacity: 0;
         transform: scale(0.98);
     }
     100% {
         opacity: 1;
         transform: scale(1);
     }
 }

 @keyframes page-exit {
     0% {
         opacity: 1;
         transform: scale(1);
         filter: blur(0px);
     }
     100% {
         opacity: 0;
         transform: scale(0.98);
         filter: blur(10px);
     }
 }

 .profile {
     width: min(520px, calc(100vw - 40px));
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
     transform: translateY(8px) scale(0.85);
     transform-origin: center center;
 }

 .page.visible .avatar-stage {
     animation: profile-element-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 200ms forwards;
     opacity: 0;
 }

 .page.visible .username-section {
     animation: profile-element-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 250ms forwards;
     opacity: 0;
 }

 .page.visible .custom-status-card {
     animation: profile-element-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 300ms forwards;
     opacity: 0;
 }

 .page.visible .profile-links {
     animation: profile-element-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 400ms forwards;
     opacity: 0;
 }

 .page.visible .spotify-music-player {
     animation: profile-element-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 500ms forwards;
     opacity: 0;
 }

 .page.visible .view-counter {
     animation: profile-element-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 550ms forwards;
     opacity: 0;
 }

 @keyframes profile-element-in {
     0% {
         opacity: 0;
         transform: translateY(30px);
     }
     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

/* ========================================
   FULLSCREEN BACKGROUND
   Replaceable animated GIF or video
   ======================================== */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.background-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    filter: blur(8px) brightness(0.65) saturate(0.85);
    transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1), filter 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.background-container.reveal .background-media {
    transform: scale(1.00);
    filter: blur(0px) brightness(0.65) saturate(0.85);
}

#bg-video {
    min-width: 100%;
    min-height: 100%;
}

#bg-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Simple gray background with anime silhouette aesthetic */
.background-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, rgba(30, 30, 30, 0.4) 0%, rgba(20, 20, 20, 0.6) 100%),
        radial-gradient(ellipse at bottom center, rgba(0, 0, 0, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(50, 60, 55, 0.2) 0%, transparent 50%);
    z-index: 1;
}

/* ========================================
   CONTAINER & GLASS CARD
   ======================================== */
.container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1;
}

.glass-card {
    width: 420px;
    max-width: 90%;
    background: rgba(30, 35, 32, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(120, 140, 130, 0.15),
        0 0 60px rgba(60, 120, 80, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

/* Soft glow around card - muted green-gray */
.glass-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(100, 140, 120, 0.08), rgba(80, 120, 100, 0.08));
    z-index: -1;
    opacity: 0.7;
    filter: blur(10px);
}

/* ========================================
   AVATAR
   ======================================== */
.avatar {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

/* ========================================
   USERNAME SECTION
   ======================================== */
.profile-pixel-halo {
    position: absolute;
    left: 50%;
    bottom: 38px;
    transform: translateX(-50%);
    width: 42px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    pointer-events: none;
    filter:
        drop-shadow(0 0 4px rgba(255, 213, 74, 0.85))
        drop-shadow(0 0 10px rgba(255, 224, 102, 0.55))
        drop-shadow(0 0 18px rgba(255, 200, 50, 0.3));
    animation: profile-halo-pulse 2.6s ease-in-out infinite;
}

.profile-pixel-halo svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

@keyframes profile-halo-pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1) rotate(-4deg);
        opacity: 0.95;
        filter:
            drop-shadow(0 0 4px rgba(255, 213, 74, 0.85))
            drop-shadow(0 0 10px rgba(255, 224, 102, 0.55))
            drop-shadow(0 0 18px rgba(255, 200, 50, 0.3));
    }
    50% {
        transform: translateX(-50%) scale(1.08) rotate(4deg);
        opacity: 1;
        filter:
            drop-shadow(0 0 6px rgba(255, 244, 176, 0.95))
            drop-shadow(0 0 14px rgba(255, 213, 74, 0.7))
            drop-shadow(0 0 24px rgba(255, 200, 50, 0.4));
    }
}

.username-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 2px;
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
}

.username-row {
    display: grid;
    grid-template-columns: 72px auto 72px;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
}

.username-wing {
    width: 68px;
    height: 68px;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    image-rendering: pixelated;
    pointer-events: none;
    user-select: none;
    justify-self: center;
}

.username-wing-left {
    justify-self: end;
}

.username-wing-right {
    justify-self: start;
}

.username {
    font-size: 28px;
    font-weight: 700;
    color: #ff69b4;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    letter-spacing: 0.04em;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.55);
    margin: 0;
    text-align: center;
    justify-self: center;
}

.discriminator {
    display: none;
}

.badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: -48px;
    margin-bottom: 2px;
    position: relative;
    z-index: 2;
}

.badge-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 105, 180, 0.7);
    transition: transform 0.2s ease;
}

.badge-icon:hover {
    transform: scale(1.2);
}

.badge-icon i {
    font-size: 20px;
}

.badge-icon.verified i {
    color: #5865f2;
}

.badge-icon.developer i {
    color: #5865f2;
}

.badge-icon.staff i {
    color: #ed4245;
}

.badge-icon.partner i {
    color: #5865f2;
}

.badge-icon.premium i {
    color: #faa61a;
}

/* ========================================
   DISCORD PRESENCE BAR
   ======================================== */
.presence-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 105, 180, 0.05);
    border: 1px solid rgba(255, 105, 180, 0.1);
    border-radius: 12px;
    width: 100%;
}

.status-dot-container {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6b7280;
    transition: all 0.3s ease;
}

.status-dot.online {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

.status-dot.idle {
    background: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

.status-dot.dnd {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
}

.status-dot.offline {
    background: #6b7280;
}

.status-text {
    font-size: 14px;
    color: rgba(255, 105, 180, 0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   CUSTOM STATUS
   ======================================== */
.custom-status {
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 105, 180, 0.6);
    padding: 4px 0;
    font-style: italic;
}

 .custom-status-card {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 8px 14px;
     border-radius: 12px;
     background: rgba(255, 105, 180, 0.04);
     border: 1px solid rgba(255, 105, 180, 0.08);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     color: rgba(255, 105, 180, 0.55);
     font-size: 12px;
     letter-spacing: 0.3px;
     margin-top: 8px;
 }

 .custom-status-card-icon {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 18px;
     height: 18px;
     color: rgba(255, 105, 180, 0.45);
 }

 .custom-status-card-label {
     line-height: 1;
 }

.custom-status.hidden {
    display: none;
}

.discord-link-text {
    color: rgba(255, 105, 180, 0.6);
    font-size: 13px;
    font-style: italic;
    text-decoration: none;
    cursor: none;
    transition: all 200ms ease;
    position: relative;
}

.discord-link-text:hover {
    color: #ff69b4;
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.4), 0 0 20px rgba(255, 105, 180, 0.2);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ========================================
   SPOTIFY MUSIC PLAYER
   ======================================== */
.spotify-music-player {
    width: min(560px, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    color: rgba(255, 105, 180, 0.78);
    margin-top: 18px;
}

 .view-counter {
     width: min(560px, 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     margin-top: 10px;
     color: #fc9fbd;
     font-family: 'Outfit', 'Quicksand', sans-serif;
     font-size: 13px;
     font-weight: 500;
     letter-spacing: 0.08em;
     text-transform: none;
     user-select: none;
     text-shadow: 0 0 8px rgba(252, 159, 189, 0.35);
 }

 .view-counter-text {
     font-family: inherit;
 }

 .view-counter-text.location-loaded {
     animation: location-fade-in 0.5s ease-out forwards;
 }

 @keyframes location-fade-in {
     0% {
         opacity: 0;
         transform: translateY(4px);
     }
     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .view-counter-icon {
     width: 14px;
     height: 14px;
     opacity: 0.85;
 }

/* Album Cover Container - Glassmorphism */
.album-cover-container {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1) contrast(1.05) brightness(0.95);
}

.album-cover.hidden {
    display: none;
}

.album-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 105, 180, 0.35);
    font-size: 18px;
}

/* Song Info */
.song-info {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

 .spotify-meta {
     flex: 1;
     min-width: 0;
     display: flex;
     flex-direction: column;
     gap: 6px;
 }

.song-title {
    font-size: 16px;
    color: rgba(255, 105, 180, 0.95);
    font-weight: 600;
    text-align: left;
    min-height: 22px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: -0.3px;
}

.song-artist {
    font-size: 14px;
    color: rgba(255, 105, 180, 0.55);
    font-weight: 400;
    text-align: left;
    min-height: 20px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

 .track-progress {
     width: 100%;
     height: 2px;
     background: rgba(255, 105, 180, 0.12);
     border-radius: 999px;
     overflow: hidden;
 }

 .track-progress-bar {
     height: 100%;
     width: 0%;
     background: rgba(255, 105, 180, 0.7);
     border-radius: 999px;
     transition: width 0.35s linear;
 }

/* Music Controls - Minimal Circular */
.music-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-top: 0;
}

.music-btn {
    width: auto;
    height: auto;
    border-radius: 10px;
    background: transparent;
    border: none;
    color: rgba(255, 105, 180, 0.65);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: all 0.25s ease;
    box-shadow: none;
}

.music-btn:hover {
    color: rgba(255, 105, 180, 0.95);
    transform: translateY(-1px);
}

.music-btn:active {
    transform: translateY(0px);
}

.music-btn.play-pause {
    font-size: 15px;
    color: rgba(255, 105, 180, 0.85);
}

.music-btn.play-pause:hover {
    color: #ff69b4;
}

.music-btn.play-pause.playing {
    color: #ff69b4;
}

.music-btn i {
    transition: opacity 0.2s ease;
}

.hidden {
    display: none !important;
}

/* ========================================
   SOCIAL ICONS
   ======================================== */
.profile-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 6px;
    padding-top: 4px;
}

.profile-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 105, 180, 0.05);
    border: 1px solid rgba(255, 105, 180, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 105, 180, 0.75);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-link:hover {
    background: rgba(255, 105, 180, 0.12);
    border-color: rgba(255, 105, 180, 0.4);
    color: #ff69b4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.25);
}

/* Minimal monochrome icons - subtle hover effects */
.profile-link[href*="tiktok"]:hover {
    border-color: rgba(255, 105, 180, 0.5);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.25);
}

.profile-link[href*="spotify"]:hover {
    border-color: rgba(29, 185, 84, 0.4);
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.2);
}

.profile-link[href*="instagram"]:hover {
    border-color: rgba(225, 48, 108, 0.4);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.2);
}

/* ========================================
   AVATAR RAINBOW RING & INTERACTION
   ======================================== */
.avatar-stage {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: -48px;
    cursor: none;
    overflow: visible;
}

.avatar-cat {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 420px;
    height: auto;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    mix-blend-mode: lighten;
}

.avatar-wrapper {
    position: relative;
    width: 113px;
    height: 113px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    margin-top: -36px;
    z-index: 1;
}

.avatar-rainbow-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: #ff69b4;
    z-index: 0;
    opacity: 0.85;
    transition: opacity 0.4s ease, transform 0.4s ease;
    box-shadow: 0 0 16px rgba(255, 105, 180, 0.5), 0 0 32px rgba(255, 105, 180, 0.3);
}

.avatar-rainbow-ring::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #1a1a1a;
}

.avatar-wrapper:hover .avatar-rainbow-ring {
    opacity: 1;
    transform: scale(1.06);
    box-shadow: 0 0 24px rgba(255, 105, 180, 0.6), 0 0 48px rgba(255, 105, 180, 0.35);
}

.avatar-wrapper:hover .avatar {
    transform: scale(1.04);
}

.avatar-wrapper:active .avatar-rainbow-ring {
    transform: scale(0.96);
}

.avatar-container {
    position: relative;
    z-index: 1;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0;
}

/* Pink glow pulse */
@keyframes pink-glow {
    0%   { box-shadow: 0 0 14px rgba(255, 105, 180, 0.3); }
    50%  { box-shadow: 0 0 22px rgba(255, 105, 180, 0.5); }
    100% { box-shadow: 0 0 14px rgba(255, 105, 180, 0.3); }
}

.avatar-wrapper {
    animation: pink-glow 3s ease-in-out infinite;
    border-radius: 50%;
}

/* ========================================
   SECRET MENU OVERLAY
   ======================================== */
.secret-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.secret-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.secret-video-player {
    width: 85%;
    max-width: 900px;
    max-height: 75vh;
    border-radius: 16px;
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.secret-menu-overlay.active .secret-video-player {
    transform: scale(1);
    opacity: 1;
}

/* Navigation Arrows */
.secret-menu-nav {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    pointer-events: none;
}

.secret-nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.secret-nav-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.4);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.secret-nav-btn:active {
    transform: scale(0.95);
}

/* Video title above the player */
.secret-video-title {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4), 0 0 24px rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.secret-menu-overlay.active .secret-video-title {
    opacity: 1;
}

/* ========================================
   CUSTOM CURSOR GLOW
   ======================================== */
.cursor-glow {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    width: 28px;
    height: 28px;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
    background-image: url('cute2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 0 6px rgba(255, 105, 180, 0.45));
    line-height: 1;
    user-select: none;
    animation: cursor-glow-pulse 2.5s ease-in-out infinite;
}

.cursor-glow::after {
    content: none;
}

.cursor-glow.active {
    opacity: 1;
}

.cursor-glow.hovering {
    transform: translate(-50%, -50%) scale(1.35);
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.7)) drop-shadow(0 0 18px rgba(255, 105, 180, 0.35));
}

/* Intro screen: black pixel heart cursor */
body.intro-cursor-active .cursor-glow {
    width: 22px;
    height: 20px;
    background-image: url('pixel-heart-black.svg');
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    mix-blend-mode: normal;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.35));
    animation: none;
}

body.intro-cursor-active .cursor-glow.hovering {
    transform: translate(-50%, -50%) scale(1.25);
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.45));
}

@keyframes cursor-glow-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 6px rgba(255, 105, 180, 0.45));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.65));
    }
}

.cursor-trail-container {
    display: none;
}

.cursor-trail-dot {
    display: none;
}

/* ========================================
   VIDEO PLAYER BACKGROUND
   ======================================== */
.video-player-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 700ms ease;
    pointer-events: none;
}

.video-player-bg.active {
    opacity: 1;
}

.musical-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* Video Player Controls (Spotify-style) */
.video-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.video-control-btn {
    background: none;
    border: none;
    color: rgba(255, 105, 180, 0.6);
    font-size: 14px;
    cursor: none;
    transition: all 200ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.video-control-btn:hover {
    color: #ff69b4;
    transform: scale(1.1);
}

.video-control-btn:active {
    transform: scale(0.95);
}

.video-control-btn.hidden {
    display: none;
}

.video-counter-text {
    font-size: 11px;
    color: rgba(255, 105, 180, 0.5);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    letter-spacing: 0.5px;
    text-align: center;
    margin-top: 8px;
}

/* ========================================
   BACK BUTTON
   ======================================== */
.back-button {
    position: fixed;
    top: 40px;
    left: 40px;
    z-index: 50;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 105, 180, 0.25);
    background: rgba(255, 105, 180, 0.08);
    color: rgba(255, 105, 180, 0.7);
    border-radius: 50%;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 200ms ease;
}

.back-button:hover {
    border-color: rgba(255, 105, 180, 0.55);
    background: rgba(255, 105, 180, 0.15);
    color: #ff69b4;
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(255, 105, 180, 0.25);
}

.back-button:active {
    transform: scale(0.95);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 480px) {
    .avatar-stage {
        width: 320px;
        height: 320px;
    }

    .avatar-cat {
        width: 320px;
    }

    .avatar-wrapper {
        width: 92px;
        height: 92px;
        margin-top: -28px;
    }

    .avatar-container {
        width: 84px;
        height: 84px;
    }

    .avatar {
        width: 84px;
        height: 84px;
    }

    .username {
        font-size: 24px;
    }

    .username-wing {
        width: 56px;
        height: 56px;
    }

    .username-row {
        grid-template-columns: 60px auto 60px;
        column-gap: 6px;
    }

    .spotify-music-player {
        gap: 10px;
        margin-top: 16px;
    }

    .view-counter {
        margin-top: 8px;
        font-size: 12px;
    }

    .album-cover-container {
        width: 40px;
        height: 40px;
    }

    .profile-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .secret-video-player {
        width: 95%;
        max-height: 60vh;
        border-radius: 12px;
    }

    .secret-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .secret-menu-nav {
        padding: 0 12px;
    }

    .secret-menu-hint {
        gap: 16px;
        font-size: 11px;
        bottom: 16px;
    }

    .cursor-glow,
    .cursor-trail-container {
        display: none;
    }
}
