clarkeplay / style
AptlyDigital's picture
Rename style.css to style
cd36c78 verified
/* Clarke Player Pro - 4K Premium Styling */
:root {
--primary: #8B5CF6;
--primary-dark: #7C3AED;
--primary-light: #A78BFA;
--accent: #10B981;
--accent-dark: #059669;
--danger: #EF4444;
--warning: #F59E0B;
--info: #3B82F6;
--bg-dark: #0F172A;
--bg-card: #1E293B;
--bg-panel: #334155;
--bg-surface: rgba(255, 255, 255, 0.05);
--text-primary: #F1F5F9;
--text-secondary: #94A3B8;
--text-muted: #64748B;
--border: rgba(255, 255, 255, 0.1);
--border-light: rgba(255, 255, 255, 0.05);
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
--gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
--gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-dark));
--gradient-dark: linear-gradient(135deg, var(--bg-dark), #1A1F35);
--glass-bg: rgba(255, 255, 255, 0.025);
--glass-border: rgba(255, 255, 255, 0.1);
--glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Reset & Base */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--bg-dark);
color: var(--text-primary);
height: 100vh;
overflow: hidden;
font-weight: 400;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.app-container {
display: flex;
flex-direction: column;
height: 100vh;
position: relative;
overflow: hidden;
}
/* Animated Background */
.bg-animation {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
overflow: hidden;
}
.gradient-circle {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.15;
animation: float 20s infinite ease-in-out;
}
.gradient-circle:nth-child(1) {
width: 600px;
height: 600px;
background: var(--primary);
top: -300px;
left: -300px;
animation-delay: 0s;
}
.gradient-circle:nth-child(2) {
width: 500px;
height: 500px;
background: var(--accent);
bottom: -250px;
right: -250px;
animation-delay: 5s;
}
.gradient-circle:nth-child(3) {
width: 400px;
height: 400px;
background: var(--info);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation-delay: 10s;
}
@keyframes float {
0%, 100% { transform: translateY(0) scale(1); }
50% { transform: translateY(-20px) scale(1.05); }
}
/* Main Header */
.main-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
background: var(--glass-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid var(--glass-border);
z-index: 100;
box-shadow: var(--glass-shadow);
}
.header-left {
display: flex;
align-items: center;
gap: 2rem;
}
.logo {
display: flex;
align-items: center;
gap: 0.75rem;
}
.logo i {
font-size: 2rem;
color: var(--primary-light);
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.logo h1 {
font-size: 1.75rem;
font-weight: 700;
background: linear-gradient(135deg, var(--text-primary), var(--primary-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.logo h1 span {
color: var(--primary);
}
.logo sup {
font-size: 0.7rem;
background: var(--gradient-accent);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-left: 0.25rem;
font-weight: 600;
}
.player-status {
display: flex;
align-items: center;
gap: 0.5rem;
background: rgba(255, 255, 255, 0.05);
padding: 0.5rem 1rem;
border-radius: 20px;
border: 1px solid var(--border-light);
}
.status-indicator {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--accent);
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(1.1); }
100% { opacity: 1; transform: scale(1); }
}
.header-right {
display: flex;
align-items: center;
gap: 1rem;
}
.ui-btn {
width: 40px;
height: 40px;
border-radius: 12px;
background: var(--glass-bg);
border: 1px solid var(--glass-border);
color: var(--text-secondary);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
}
.ui-btn:hover {
background: rgba(255, 255, 255, 0.1);
color: var(--text-primary);
transform: translateY(-2px);
box-shadow: var(--shadow);
}
.user-profile .avatar {
width: 40px;
height: 40px;
border-radius: 12px;
background: var(--gradient-primary);
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 0.9rem;
color: white;
cursor: pointer;
transition: var(--transition);
}
.user-profile .avatar:hover {
transform: scale(1.05);
box-shadow: var(--shadow);
}
/* Main Content */
.main-content {
display: grid;
grid-template-columns: 320px 1fr 320px;
gap: 1.5rem;
padding: 1.5rem;
flex: 1;
overflow: hidden;
}
@media (max-width: 1920px) {
.main-content {
grid-template-columns: 300px 1fr 300px;
}
}
/* Panel Cards */
.panel-card {
background: var(--glass-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(--glass-border);
border-radius: 20px;
padding: 1.5rem;
margin-bottom: 1.5rem;
box-shadow: var(--glass-shadow);
transition: var(--transition);
}
.panel-card:hover {
border-color: rgba(255, 255, 255, 0.15);
}
.panel-card h3 {
font-size: 1rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 1.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.panel-card h3 i {
color: var(--primary-light);
}
/* Left Panel - Playlist Input */
.input-group {
margin-bottom: 1.5rem;
}
.input-group label {
display: block;
font-size: 0.875rem;
font-weight: 500;
color: var(--text-secondary);
margin-bottom: 0.5rem;
}
.input-with-icon {
position: relative;
}
.input-with-icon i {
position: absolute;
left: 1rem;
top: 50%;
transform: translateY(-50%);
color: var(--text-muted);
}
.input-with-icon input {
width: 100%;
padding: 0.875rem 1rem 0.875rem 2.75rem;
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border);
border-radius: 12px;
color: var(--text-primary);
font-size: 0.875rem;
transition: var(--transition);
}
.input-with-icon input:focus {
outline: none;
border-color: var(--primary);
background: rgba(255, 255, 255, 0.08);
box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
.file-upload-area {
border: 2px dashed var(--border);
border-radius: 12px;
padding: 2rem 1rem;
text-align: center;
cursor: pointer;
transition: var(--transition);
background: rgba(255, 255, 255, 0.02);
}
.file-upload-area:hover {
border-color: var(--primary);
background: rgba(255, 255, 255, 0.05);
}
.file-upload-area i {
font-size: 2rem;
color: var(--text-muted);
margin-bottom: 0.75rem;
}
.file-upload-area p {
font-size: 0.875rem;
color: var(--text-secondary);
margin: 0;
}
.quick-presets {
margin-bottom: 1.5rem;
}
.quick-presets h4 {
font-size: 0.875rem;
color: var(--text-secondary);
margin-bottom: 0.75rem;
}
.preset-buttons {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.preset-btn {
padding: 0.75rem 1rem;
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border);
border-radius: 10px;
color: var(--text-secondary);
font-size: 0.875rem;
display: flex;
align-items: center;
gap: 0.5rem;
cursor: pointer;
transition: var(--transition);
}
.preset-btn:hover {
background: rgba(255, 255, 255, 0.1);
border-color: var(--primary);
color: var(--text-primary);
transform: translateX(4px);
}
.action-buttons {
display: flex;
gap: 1rem;
margin-bottom: 1.5rem;
}
.btn-primary, .btn-secondary {
flex: 1;
padding: 1rem;
border: none;
border-radius: 12px;
font-size: 0.875rem;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
.btn-primary {
background: var(--gradient-primary);
color: white;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}
.btn-secondary {
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border);
color: var(--text-secondary);
}
.btn-secondary:hover {
background: rgba(255, 255, 255, 0.1);
color: var(--text-primary);
}
.playlist-info .info-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
}
.info-item {
text-align: center;
}
.info-item span {
display: block;
font-size: 0.75rem;
color: var(--text-secondary);
margin-bottom: 0.25rem;
}
.info-item strong {
font-size: 1.25rem;
font-weight: 700;
color: var(--text-primary);
}
/* Center Panel - Video Player */
.center-panel {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.video-container {
position: relative;
background: #000;
border-radius: 20px;
overflow: hidden;
aspect-ratio: 16/9;
box-shadow: var(--shadow-xl);
}
#videoPlayer {
width: 100%;
height: 100%;
display: block;
outline: none;
}
.video-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
display: flex;
align-items: flex-end;
padding: 2rem;
opacity: 0;
transition: var(--transition);
}
.video-container:hover .video-overlay {
opacity: 1;
}
.now-playing {
display: flex;
align-items: center;
gap: 1rem;
}
.channel-logo-large {
width: 60px;
height: 60px;
border-radius: 15px;
background: rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
color: var(--primary-light);
}
.now-playing-info h2 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 0.25rem;
}
.now-playing-info p {
color: var(--text-secondary);
font-size: 0.875rem;
}
.player-controls {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
display: flex;
align-items: center;
gap: 2rem;
background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(20px);
padding: 1rem 2rem;
border-radius: 50px;
border: 1px solid rgba(255, 255, 255, 0.1);
opacity: 0;
transition: var(--transition);
}
.video-container:hover .player-controls {
opacity: 1;
}
.control-group {
display: flex;
gap: 1rem;
}
.control-btn {
width: 48px;
height: 48px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
color: white;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
}
.control-btn:hover {
background: rgba(255, 255, 255, 0.2);
transform: scale(1.1);
}
.control-btn.play-btn {
background: var(--gradient-primary);
border: none;
}
.control-btn.play-btn:hover {
background: var(--primary-dark);
box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}
.volume-control {
display: flex;
align-items: center;
gap: 0.75rem;
}
.volume-control i {
color: var(--text-secondary);
}
.volume-control input[type="range"] {
width: 100px;
height: 4px;
background: rgba(255, 255, 255, 0.1);
border-radius: 2px;
outline: none;
-webkit-appearance: none;
}
.volume-control input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
width: 16px;
height: 16px;
border-radius: 50%;
background: var(--primary);
cursor: pointer;
border: 2px solid white;
}
.loading-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.8);
display: none;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1rem;
}
.loading-overlay .spinner {
width: 60px;
height: 60px;
border: 4px solid rgba(255, 255, 255, 0.1);
border-top-color: var(--primary);
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
/* EPG Timeline */
.epg-timeline {
background: var(--glass-bg);
backdrop-filter: blur(20px);
border: 1px solid var(--glass-border);
border-radius: 15px;
padding: 1.25rem;
}
.timeline-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}
.timeline-header h4 {
font-size: 0.875rem;
font-weight: 600;
color: var(--text-primary);
display: flex;
align-items: center;
gap: 0.5rem;
}
.timeline-nav {
display: flex;
gap: 0.5rem;
}
.nav-btn {
width: 32px;
height: 32px;
border-radius: 8px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border);
color: var(--text-secondary);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
}
.nav-btn:hover {
background: rgba(255, 255, 255, 0.1);
color: var(--text-primary);
}
.timeline-content {
display: flex;
gap: 1rem;
overflow-x: auto;
padding-bottom: 0.5rem;
}
.timeline-content::-webkit-scrollbar {
height: 4px;
}
.timeline-content::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.05);
border-radius: 2px;
}
.timeline-content::-webkit-scrollbar-thumb {
background: var(--primary);
border-radius: 2px;
}
.epg-item {
flex-shrink: 0;
padding: 0.75rem 1rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 10px;
border: 1px solid transparent;
transition: var(--transition);
min-width: 180px;
}
.epg-item.active {
background: var(--gradient-primary);
border-color: var(--primary);
}
.epg-time {
font-size: 0.75rem;
font-weight: 600;
color: var(--text-secondary);
margin-bottom: 0.25rem;
}
.epg-item.active .epg-time {
color: rgba(255, 255, 255, 0.9);
}
.epg-show {
font-size: 0.875rem;
color: var(--text-primary);
}
.epg-item.active .epg-show {
color: white;
font-weight: 500;
}
/* Channels Grid */
.channels-grid {
background: var(--glass-bg);
backdrop-filter: blur(20px);
border: 1px solid var(--glass-border);
border-radius: 20px;
overflow: hidden;
flex: 1;
display: flex;
flex-direction: column;
}
.grid-header {
padding: 1.5rem;
border-bottom: 1px solid var(--border);
display: flex;
justify-content: space-between;
align-items: center;
}
.grid-header h3 {
font-size: 1rem;
font-weight: 600;
color: var(--text-primary);
display: flex;
align-items: center;
gap: 0.5rem;
}
.grid-controls {
display: flex;
align-items: center;
gap: 1rem;
}
.search-box {
display: flex;
align-items: center;
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border);
border-radius: 12px;
padding: 0.5rem 0.75rem;
gap: 0.5rem;
}
.search-box i {
color: var(--text-muted);
font-size: 0.875rem;
}
.search-box input {
background: transparent;
border: none;
color: var(--text-primary);
font-size: 0.875rem;
width: 200px;
outline: none;
}
.search-box input::placeholder {
color: var(--text-muted);
}
.view-toggle {
display: flex;
gap: 0.25rem;
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border);
border-radius: 12px;
padding: 0.25rem;
}
.view-btn {
width: 32px;
height: 32px;
border-radius: 8px;
background: transparent;
border: none;
color: var(--text-secondary);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
}
.view-btn.active {
background: rgba(255, 255, 255, 0.1);
color: var(--text-primary);
}
.view-btn:hover:not(.active) {
background: rgba(255, 255, 255, 0.05);
}
.channels-container {
flex: 1;
padding: 1.5rem;
overflow-y: auto;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 1rem;
align-content: start;
}
.channels-container::-webkit-scrollbar {
width: 8px;
}
.channels-container::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.05);
border-radius: 4px;
}
.channels-container::-webkit-scrollbar-thumb {
background: var(--primary);
border-radius: 4px;
}
.channels-container::-webkit-scrollbar-thumb:hover {
background: var(--primary-dark);
}
.channel-card {
background: rgba(255, 255, 255, 0.03);
border: 1px solid var(--border);
border-radius: 15px;
padding: 1.25rem;
cursor: pointer;
transition: var(--transition);
position: relative;
overflow: hidden;
}
.channel-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: var(--gradient-primary);
transform: scaleX(0);
transition: var(--transition);
}
.channel-card:hover {
background: rgba(255, 255, 255, 0.06);
border-color: var(--primary);
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
}
.channel-card:hover::before {
transform: scaleX(1);
}
.channel-card.active {
background: rgba(139, 92, 246, 0.1);
border-color: var(--primary);
}
.channel-card.active::before {
transform: scaleX(1);
}
.channel-logo {
width: 48px;
height: 48px;
border-radius: 12px;
background: rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
font-size: 1.25rem;
color: var(--primary-light);
}
.channel-info h4 {
font-size: 0.875rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 0.25rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.channel-meta {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.75rem;
color: var(--text-secondary);
}
.channel-number {
font-weight: 600;
color: var(--primary-light);
}
.channel-fav {
position: absolute;
top: 1rem;
right: 1rem;
color: var(--text-muted);
cursor: pointer;
transition: var(--transition);
}
.channel-fav:hover {
color: #FFD700;
transform: scale(1.2);
}
.channel-fav.active {
color: #FFD700;
}
.welcome-state {
grid-column: 1 / -1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 3rem;
text-align: center;
color: var(--text-secondary);
}
.welcome-state i {
font-size: 4rem;
margin-bottom: 1.5rem;
color: var(--primary-light);
opacity: 0.5;
}
.welcome-state h3 {
font-size: 1.5rem;
color: var(--text-primary);
margin-bottom: 0.5rem;
}
/* Right Panel */
.current-channel-info {
margin-bottom: 1.5rem;
}
.channel-display {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1rem;
}
.channel-logo {
width: 48px;
height: 48px;
border-radius: 12px;
background: rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
color: var(--primary-light);
}
.channel-details {
flex: 1;
}
.channel-details h4 {
font-size: 1rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 0.25rem;
}
.channel-region {
font-size: 0.75rem;
color: var(--text-secondary);
background: rgba(255, 255, 255, 0.05);
padding: 0.25rem 0.5rem;
border-radius: 6px;
display: inline-block;
}
.fav-btn {
width: 40px;
height: 40px;
border-radius: 10px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border);
color: var(--text-muted);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
}
.fav-btn:hover {
background: rgba(255, 255, 255, 0.1);
color: #FFD700;
}
.fav-btn.active {
color: #FFD700;
border-color: rgba(255, 215, 0, 0.3);
}
.quality-indicator {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.75rem;
background: rgba(255, 255, 255, 0.03);
border-radius: 10px;
border: 1px solid var(--border);
}
.quality-badge {
padding: 0.25rem 0.75rem;
background: var(--gradient-accent);
color: white;
font-size: 0.75rem;
font-weight: 600;
border-radius: 20px;
}
.resolution {
font-size: 0.75rem;
color: var(--text-secondary);
}
.program-info {
margin-bottom: 1.5rem;
}
.program-info h4 {
font-size: 0.875rem;
color: var(--text-secondary);
margin-bottom: 0.75rem;
}
.program-details p {
font-size: 0.875rem;
color: var(--text-primary);
margin-bottom: 0.75rem;
line-height: 1.5;
}
.program-time {
display: flex;
align-items: center;
gap: 0.75rem;
}
.time-badge {
padding: 0.25rem 0.5rem;
background: var(--danger);
color: white;
font-size: 0.75rem;
font-weight: 600;
border-radius: 6px;
}
.duration {
font-size: 0.75rem;
color: var(--text-secondary);
}
.audio-tracks h4 {
font-size: 0.875rem;
color: var(--text-secondary);
margin-bottom: 0.75rem;
}
.track-list {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.track-item {
padding: 0.75rem;
background: rgba(255, 255, 255, 0.03);
border: 1px solid var(--border);
border-radius: 10px;
display: flex;
align-items: center;
gap: 0.75rem;
font-size: 0.875rem;
color: var(--text-secondary);
cursor: pointer;
transition: var(--transition);
}
.track-item:hover {
background: rgba(255, 255, 255, 0.06);
border-color: var(--primary);
}
.track-item.active {
background: rgba(139, 92, 246, 0.1);
border-color: var(--primary);
color: var(--text-primary);
}
.filter-group {
display: flex;
flex-direction: column;
gap: 1rem;
}
.filter-item label {
display: block;
font-size: 0.875rem;
color: var(--text-secondary);
margin-bottom: 0.5rem;
}
.filter-item select {
width: 100%;
padding: 0.75rem;
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border);
border-radius: 10px;
color: var(--text-primary);
font-size: 0.875rem;
cursor: pointer;
transition: var(--transition);
}
.filter-item select:focus {
outline: none;
border-color: var(--primary);
background: rgba(255, 255, 255, 0.08);
}
.quality-filter {
display: flex;
gap: 1rem;
}
.checkbox-label {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
color: var(--text-secondary);
cursor: pointer;
transition: var(--transition);
}
.checkbox-label input[type="checkbox"] {
width: 16px;
height: 16px;
border-radius: 4px;
border: 1px solid var(--border);
background: rgba(255, 255, 255, 0.05);
cursor: pointer;
transition: var(--transition);
}
.checkbox-label input[type="checkbox"]:checked {
background: var(--primary);
border-color: var(--primary);
}
.checkbox-label:hover {
color: var(--text-primary);
}
.sort-buttons {
display: flex;
gap: 0.5rem;
}
.sort-btn {
flex: 1;
padding: 0.5rem;
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border);
border-radius: 8px;
color: var(--text-secondary);
font-size: 0.75rem;
cursor: pointer;
transition: var(--transition);
}
.sort-btn.active {
background: rgba(139, 92, 246, 0.1);
border-color: var(--primary);
color: var(--text-primary);
}
.sort-btn:hover:not(.active) {
background: rgba(255, 255, 255, 0.08);
}
.stats-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
}
.stat-item {
text-align: center;
padding: 1rem;
background: rgba(255, 255, 255, 0.03);
border-radius: 12px;
border: 1px solid var(--border);
}
.stat-icon {
width: 40px;
height: 40px;
border-radius: 10px;
background: rgba(139, 92, 246, 0.1);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 0.75rem;
color: var(--primary-light);
font-size: 1.25rem;
}
.stat-info span {
display: block;
font-size: 0.75rem;
color: var(--text-secondary);
margin-bottom: 0.25rem;
}
.stat-info strong {
font-size: 1.25rem;
font-weight: 700;
color: var(--text-primary);
}
/* Bottom Bar */
.bottom-bar {
background: var(--glass-bg);
backdrop-filter: blur(20px);
border-top: 1px solid var(--glass-border);
padding: 0.75rem 2rem;
box-shadow: var(--glass-shadow);
}
.progress-bar {
width: 100%;
height: 3px;
background: rgba(255, 255, 255, 0.05);
border-radius: 2px;
margin-bottom: 0.75rem;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: var(--gradient-primary);
width: 0%;
transition: width 0.3s ease;
}
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.playback-info {
font-size: 0.875rem;
color: var(--text-secondary);
display: flex;
align-items: center;
gap: 0.25rem;
}
.separator {
color: var(--text-muted);
}
.shortcuts-info {
display: flex;
gap: 1.5rem;
}
.shortcut-item {
display: flex;
align-items: center;
gap: 0.5rem;
}
.shortcut-item kbd {
padding: 0.25rem 0.5rem;
background: rgba(255, 255, 255, 0.1);
border: 1px solid var(--border);
border-radius: 6px;
font-family: 'Inter', monospace;
font-size: 0.75rem;
color: var(--text-primary);
min-width: 36px;
text-align: center;
}
.shortcut-item span {
font-size: 0.75rem;
color: var(--text-secondary);
}
.version-info {
font-size: 0.75rem;
color: var(--text-muted);
opacity: 0.7;
}
/* Favorites Section */
.favorites-list {
display: flex;
flex-direction: column;
gap: 0.5rem;
max-height: 200px;
overflow-y: auto;
}
.favorites-list::-webkit-scrollbar {
width: 4px;
}
.favorites-list::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.05);
}
.favorites-list::-webkit-scrollbar-thumb {
background: var(--primary);
border-radius: 2px;
}
.favorite-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem;
background: rgba(255, 255, 255, 0.03);
border: 1px solid var(--border);
border-radius: 10px;
cursor: pointer;
transition: var(--transition);
}
.favorite-item:hover {
background: rgba(255, 255, 255, 0.06);
border-color: var(--primary);
}
.favorite-item i {
color: #FFD700;
font-size: 0.875rem;
}
.favorite-item span {
font-size: 0.875rem;
color: var(--text-primary);
flex: 1;
}
.empty-favorites {
text-align: center;
padding: 2rem 1rem;
color: var(--text-secondary);
}
.empty-favorites i {
font-size: 2rem;
margin-bottom: 0.75rem;
opacity: 0.5;
}
.empty-favorites p {
font-size: 0.875rem;
}
/* Responsive */
@media (max-width: 1600px) {
.main-content {
grid-template-columns: 280px 1fr 280px;
}
}
@media (max-width: 1366px) {
.main-content {
grid-template-columns: 260px 1fr 260px;
}
}
@media (max-width: 1200px) {
.main-content {
grid-template-columns: 1fr;
grid-template-rows: auto 1fr auto;
}
.left-panel, .right-panel {
display: none;
}
}