@charset "UTF-8";
@import url("hsrfonts.css");
html, body {
    height: 100%;
    overflow-y: scroll;
}
body {
    font-family: 'Inter', sans-serif;
    background: url("alien-sportsgear.png") left bottom no-repeat fixed, radial-gradient(circle at center, #1a0b2e 0%, #000000 100%);    
    color: #e2e8f0;
    overflow-x: hidden;
    min-height: 100vh;
}
.hsr__bgs--wrap{
    background-color: transparent;
    background-image: url("alien-sportsgear.png");
    background-position: bottom left;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease;
}
.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Visualizer */
.bar {
    width: 6px;
    border-radius: 4px;
    animation: bounce 1.2s ease-in-out infinite;
    background-color: #39FF14;
    transition: background-color 0.5s ease;
}
@keyframes bounce {
    0%, 100% { height: 10px; opacity: 0.5; }
    50% { height: 40px; opacity: 1; }
}

/* Utilities */
.hidden-view { display: none; }

/* Player Tabs */
.active-tab { background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.3); color: white; }
.inactive-tab { background: transparent; color: #94a3b8; border: 1px solid transparent; }
.inactive-tab:hover { color: white; }

/* Schedule Tabs */
.day-active { background-color: #39FF14; color: black; box-shadow: 0 0 15px #39FF14; font-weight: bold; }
.day-inactive { background-color: rgba(255, 255, 255, 0.05); color: #9ca3af; }
.day-inactive:hover { background-color: rgba(255, 255, 255, 0.1); color: white; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }