* { box-sizing: border-box; margin: 0; padding: 0; font-family: ui-monospace, sans-serif; }
body { 
    background-color: #0b0c10; 
    background-image: url('Vial Logo No Background.png');
    background-position: center 80px; /* Logo anchored near top */
    background-repeat: no-repeat;
    background-size: 300px;
    background-attachment: fixed;
    color: #ffffff; 
    min-height: 100vh; 
    display: flex; 
    justify-content: center; 
    /* Increased top padding to push text below logo */
    padding: 400px 24px 40px; 
}

.page-wrapper { width: 100%; max-width: 480px; }

/* Radio Banner */
.stream-banner { position: fixed; top: 16px; left: 50%; transform: translateX(-50%); width: calc(100% - 32px); max-width: 440px; background: rgba(26,29,36,0.8); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 16px; display: flex; flex-direction: column; gap: 12px; z-index: 1000; box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.marquee-container { width: 100%; overflow: hidden; display: flex; justify-content: center; margin-bottom: 4px; }
.stream-track-title { font-size: 0.85rem; color: #e2e8f0; white-space: nowrap; animation: bounceScroll 10s ease-in-out infinite alternate; }
.stream-info-row { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.live-indicator { color: #ef4444; font-size: 0.7rem; font-weight: 800; }
.stream-controls { display: flex; align-items: center; gap: 20px; justify-content: center; }
#volume-slider { width: 80px; cursor: pointer; accent-color: #ffffff; }
.stream-toggle-btn { background: #ffffff; color: #0b0c10; border: none; padding: 6px 16px; border-radius: 20px; font-weight: 700; cursor: pointer; }

/* Profile Container - Now pushed below logo */
.profile-container { width: 100%; text-align: center; }
.bio-location-row, .artist-bio-text-block { 
    display: flex; flex-direction: column; align-items: center; gap: 8px; 
    color: #94a3b8; margin-bottom: 24px; 
}
.artist-bio-text-block p { color: #e2e8f0; line-height: 1.6; }

/* Links & Footer */
.links-stack { display: flex; flex-direction: column; gap: 16px; width: 100%; max-width: 480px; margin: 0 auto 32px; perspective: 1000px; }
.link-item-wrapper { display: flex; align-items: center; gap: 16px; background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 16px; color: #ffffff; text-decoration: none; transition: all 0.3s ease; }
.link-item-wrapper:hover { background: rgba(255, 255, 255, 0.08); transform: rotateX(5deg) rotateY(2deg) scale(1.02); animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite; }
@keyframes glitch { 0% { transform: translate(0); } 20% { transform: translate(-2px, 2px); } 100% { transform: translate(0); } }
.icon-circle { width: 48px; height: 48px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; flex-shrink: 0; }
.img-bg { background: #111215; border: 1px solid rgba(255,255,255,0.1); }
.green-bg { background: #1db954; color: #000; }
.white-bg { background: #ffffff; color: #4285f4; }
.link-block-text-wrapper { flex-grow: 1; text-align: left; overflow: hidden; }
.link-name { font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.link-url { font-size: 0.75rem; color: #94a3b8; }
.link-arrow-wrapper { color: #94a3b8; }
.socials-footer-row { display: flex; justify-content: center; gap: 20px; }
.circle-social-icon { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: #ffffff; text-decoration: none; cursor: pointer; background: transparent; }
.crt-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06)); background-size: 100% 4px, 3px 100%; pointer-events: none; z-index: 9999; opacity: 0.2; }
@keyframes bounceScroll { 0% { transform: translateX(0%); } 100% { transform: translateX(calc(-100% + 250px)); } }