:root {
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
    --accent: #bc13fe;
    --glow: 0 0 25px rgba(188, 19, 254, 0.6);
    --up: #00ff88;
    --down: #ff4444;
}
* { margin: 0; padding: 0; box-sizing: border-box; cursor: none !important; user-select: none !important; -webkit-tap-highlight-color: transparent; }
body { background: #000; color: #fff; font-family: 'Montserrat', sans-serif; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
#starCanvas { position: fixed; inset: 0; z-index: -1; }
#cursor-dot, #cursor-circle { position: fixed; top: 0; left: 0; border-radius: 50%; z-index: 10000; pointer-events: none; will-change: transform; }
#cursor-dot { width: 6px; height: 6px; background: #fff; box-shadow: 0 0 10px #fff; }
#cursor-circle { width: 34px; height: 34px; border: 1.5px solid rgba(188, 19, 254, 0.4); background: radial-gradient(circle, rgba(188, 19, 254, 0.05) 0%, transparent 70%); transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s; }
.cursor-hover #cursor-dot { width: 8px; height: 8px; background: var(--accent); box-shadow: none !important; filter: none !important; }
.cursor-hover #cursor-circle { width: 55px; height: 55px; border-color: #fff; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(4px); box-shadow: var(--glow); }
.clickable { transition: transform 0.2s ease, border-color 0.3s, box-shadow 0.3s; }
@media (hover: hover) { .clickable:hover { transform: scale(1.03); border-color: var(--accent); background: rgba(188, 19, 254, 0.05); } }
.clickable:active { transform: scale(0.95); background: rgba(188, 19, 254, 0.1); }
.intro { position: fixed; inset: 0; background: #000; display: flex; align-items: center; justify-content: center; z-index: 5000; transition: opacity 0.8s ease, visibility 0.8s; }
.intro-t { font-weight: 900; font-size: clamp(1.2rem, 6vw, 2.5rem); text-shadow: var(--glow); letter-spacing: 4px; text-align: center; padding: 0 30px; animation: iA 2s ease-in-out infinite; }
@keyframes iA { 0%, 100% { opacity: 0.3; filter: blur(5px); transform: scale(0.95); } 50% { opacity: 1; filter: blur(0); transform: scale(1.05); } }
.intro.hide { opacity: 0; visibility: hidden; }
.container { width: 90%; max-width: 400px; display: flex; flex-direction: column; gap: 12px; opacity: 0; transform: translateY(20px); transition: opacity 1s ease 0.2s, transform 1s ease 0.2s; z-index: 10; }
body.loaded .container { opacity: 1; transform: translateY(0); }
.glass { background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: 25px; padding: 25px; position: relative; text-align: center; }
.btn-row { display: flex; gap: 10px; }
.btn-row .btn { flex: 1; }
.avatar-frame { width: 100px; height: 100px; border-radius: 50%; border: 2px solid var(--accent); box-shadow: var(--glow); margin: 0 auto 15px; overflow: hidden; background: #111; }
.avatar { width: 100%; height: 100%; object-fit: cover; }
h1 { font-size: 1.3rem; font-weight: 900; margin-bottom: 5px; }
.sub-info { font-size: 0.7rem; opacity: 0.6; margin-bottom: 15px; font-weight: 700; }
.stack { display: flex; justify-content: center; gap: 6px; margin-bottom: 15px; flex-wrap: wrap; }
.tech { font-size: 0.55rem; font-weight: 900; padding: 4px 10px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--accent); }
.time { color: var(--accent); font-weight: 900; margin-bottom: 20px; font-size: 0.9rem; }
.rate-wrap { display: flex; gap: 8px; margin-bottom: 15px; }
.rate-card { flex: 1; background: rgba(0,0,0,0.3); padding: 10px; border-radius: 15px; border: 1px solid var(--border); }
.rate-label { font-size: 0.5rem; opacity: 0.5; font-weight: 800; margin-bottom: 3px; }
.rate-val { font-weight: 900; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; gap: 4px; }
.trend { font-size: 0.6rem; }
.trend.up { color: var(--up); }
.trend.down { color: var(--down); }
.btn { display: block; width: 100%; padding: 14px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 18px; color: #fff; text-decoration: none; font-weight: 900; text-align: center; font-size: 0.9rem; }
.music-card { display: flex; align-items: center; gap: 15px; text-align: left; padding: 12px 20px; text-decoration: none; color: inherit; }
#mTitle { font-weight: 900; color: var(--accent); font-size: 0.8rem; }
#mArtist { font-size: 0.7rem; opacity: 0.5; }
.track-cover { width: 45px; height: 45px; border-radius: 50%; border: 1px solid var(--border); object-fit: cover; }
.playing .track-cover { animation: spin 8s linear infinite; border-color: var(--accent); box-shadow: var(--glow); }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.lang-toggle { position: absolute; top: 18px; right: 18px; padding: 5px 10px; background: rgba(255,255,255,0.07); border-radius: 8px; font-size: 0.6rem; font-weight: 900; color: #fff; border: none; }
@media (max-width: 480px) { body { align-items: flex-start; overflow-y: auto; padding-top: 40px; } .container { padding-bottom: 40px; } }
@media (pointer: coarse) { #cursor-dot, #cursor-circle { display: none !important; } * { cursor: auto !important; } }
