/*
Theme Name: Virallinx Advanced
Theme URI: https://virallinx.com
Author: Core Engineering
Description: A hyper-fast, modular, closed-creator video platform. Features dark-mode UI, custom HTML5 proxy streaming, and robust creator tools.
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: virallinx
*/

/* Custom Scrollbar for a native app feel */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e50914;
}

/* Base resets to prevent FOUC (Flash of Unstyled Content) */
body {
    background-color: #050505;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* Glassmorphism utilities */
.glass-panel {
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}