/* ============================================
   DIGA - ULTRA GAMING DESIGN
   Hochperformante, moderne Game-UI
   ============================================ */

:root {
    /* Neon Gaming Colors */
    --primary: #00f0ff;
    --primary-glow: rgba(0, 240, 255, 0.5);
    --secondary: #ff00ff;
    --secondary-glow: rgba(255, 0, 255, 0.5);
    --accent: #ffff00;
    --success: #00ff88;
    --error: #ff0055;
    
    /* Dark Gaming Background */
    --bg-dark: #0a0e27;
    --bg-darker: #050814;
    --bg-card: rgba(15, 20, 40, 0.8);
    --bg-card-hover: rgba(20, 30, 60, 0.9);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', 'Exo 2', 'Rajdhani', sans-serif;
    background: var(--bg-darker);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
    animation: bgPulse 10s ease-in-out infinite;
    z-index: -1;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Particle Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* Container */
.container {
    width: 100%;
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

/* Screen Management */
.screen {
    display: none;
    animation: screenEnter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.screen.active {
    display: block;
}

@keyframes screenEnter {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Glassmorphism Card */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 100px rgba(0, 240, 255, 0.1);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 240, 255, 0.03),
        transparent
    );
    transform: rotate(45deg);
    animation: cardShine 3s linear infinite;
}

@keyframes cardShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.card:hover {
    border-color: var(--primary);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 2px var(--primary) inset,
        0 0 150px var(--primary-glow);
    transform: translateY(-5px);
}

/* Partner Logos */
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.partner-logo {
    filter: brightness(0.9) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(0, 240, 255, 0.6));
    transform: scale(1.05);
}

/* Quadratisches Logo (MMD) */
.partner-logo-square {
    height: 60px;
    width: auto;
}

/* Breites Logo (Uni Liechtenstein) */
.partner-logo-wide {
    height: 60px;
    width: auto;
}

/* Responsive Logo-Größen */
@media (max-width: 768px) {
    .partner-logos {
        flex-direction: column;
        gap: 20px;
    }
    
    .partner-logo-square,
    .partner-logo-wide {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .partner-logo-square,
    .partner-logo-wide {
        height: 40px;
    }
}

/* Logo Section */
.logo {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.logo h1 {
    font-size: 5em;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 2s ease-in-out infinite;
    text-shadow: 
        0 0 30px var(--primary-glow),
        0 0 60px var(--secondary-glow);
    filter: drop-shadow(0 0 20px var(--primary-glow));
    letter-spacing: 5px;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px var(--primary-glow)) brightness(1);
    }
    50% {
        filter: drop-shadow(0 0 40px var(--primary-glow)) brightness(1.3);
    }
}

.logo .subtitle {
    font-size: 1.8em;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 8px;
    opacity: 0.9;
    text-shadow: 0 0 10px var(--primary-glow);
    animation: subtitlePulse 3s ease-in-out infinite;
}

@keyframes subtitlePulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Event Info */
.event-info {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 0 40px var(--primary-glow);
    animation: eventPulse 2s ease-in-out infinite;
}

@keyframes eventPulse {
    0%, 100% { box-shadow: 0 0 20px var(--primary-glow); }
    50% { box-shadow: 0 0 60px var(--primary-glow); }
}

.event-info h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Input Group */
.input-group {
    margin: 30px 0;
}

.input-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9em;
}

.input-group input {
    width: 100%;
    padding: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    font-size: 18px;
    color: #fff;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.input-group input:focus {
    border-color: var(--primary);
    box-shadow: 
        0 0 30px var(--primary-glow),
        0 0 0 4px rgba(0, 240, 255, 0.1) inset;
    transform: scale(1.02);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Gaming Buttons */
.btn {
    width: 100%;
    padding: 20px 40px;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin: 15px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 
        0 10px 30px rgba(0, 240, 255, 0.3),
        0 0 0 2px rgba(0, 240, 255, 0.2) inset;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(0, 240, 255, 0.5),
        0 0 80px var(--primary-glow),
        0 0 0 2px var(--primary) inset;
    border-color: var(--primary);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 50px var(--primary-glow);
}

.btn-choice {
    background: linear-gradient(135deg, var(--success), #00cc88);
    color: #fff;
    margin-top: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.btn-choice:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.6);
}

.btn-choice:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* QR Code Section */
.qr-section {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--glass-border);
}

.qr-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 1.1em;
}

#qrCode {
    display: inline-block;
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 0 50px var(--primary-glow);
}

/* Game Header */
.game-header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stats span {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.7);
    padding: 15px 25px;
    background: var(--glass-bg);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.stats span:hover {
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.stats strong {
    color: var(--primary);
    font-size: 1.4em;
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Audio Pair - GAMING STYLE */
.audio-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.audio-item {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 25px;
    border: 2px solid var(--glass-border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.audio-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.audio-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.4);
}

.audio-item:hover::before {
    opacity: 0.1;
}

/* Audio Wrapper */
.audio-wrapper {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.audio-wrapper:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
}

.audio-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--primary-glow);
    margin-bottom: 15px;
    text-align: center;
}

/* Gaming Audio Player Styling */
.gaming-audio {
    width: 100%;
    height: 50px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 2px solid var(--glass-border);
    outline: none;
    transition: all 0.3s ease;
}

.gaming-audio:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.gaming-audio:focus {
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
}

/* Webkit Audio Controls Styling */
.gaming-audio::-webkit-media-controls-panel {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(15, 20, 50, 0.95));
    border-radius: 12px;
}

.gaming-audio::-webkit-media-controls-play-button {
    background-color: var(--primary);
    border-radius: 50%;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.gaming-audio::-webkit-media-controls-play-button:hover {
    background-color: var(--secondary);
    transform: scale(1.1);
}

.gaming-audio::-webkit-media-controls-current-time-display,
.gaming-audio::-webkit-media-controls-time-remaining-display {
    color: var(--primary);
    text-shadow: 0 0 5px var(--primary-glow);
    font-family: 'Orbitron', sans-serif;
}

.gaming-audio::-webkit-media-controls-timeline {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 10px;
}

.gaming-audio::-webkit-media-controls-timeline::-webkit-slider-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-glow);
}

.gaming-audio::-webkit-media-controls-volume-slider {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Firefox Audio Controls */
.gaming-audio::-moz-range-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-glow);
}

.gaming-audio::-moz-range-track {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
}

.audio-item.correct {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.1));
    border: 3px solid var(--success);
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.6);
    animation: correctPulse 0.6s ease;
}

.audio-item.incorrect {
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.2), rgba(255, 0, 85, 0.1));
    border: 3px solid var(--error);
    box-shadow: 0 0 60px rgba(255, 0, 85, 0.6);
    animation: shake 0.5s ease;
}

@keyframes correctPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Feedback Messages */
.feedback {
    padding: 25px;
    border-radius: 20px;
    margin: 30px 0;
    text-align: center;
    font-weight: 700;
    font-size: 1.3em;
    animation: feedbackSlide 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes feedbackSlide {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.feedback.success {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.1));
    color: var(--success);
    border: 2px solid var(--success);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.4);
}

.feedback.error {
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.2), rgba(255, 0, 85, 0.1));
    color: var(--error);
    border: 2px solid var(--error);
    box-shadow: 0 0 50px rgba(255, 0, 85, 0.4);
}

/* Finish Screen */
.finish-card {
    text-align: center;
}

.finish-header h2 {
    font-size: 3em;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 2s ease-in-out infinite;
    margin-bottom: 30px;
}

.final-stats {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 25px;
    margin: 40px 0;
    border: 2px solid var(--glass-border);
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateX(10px);
    padding-left: 10px;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 1.1em;
}

.stat-value {
    color: var(--primary);
    font-size: 1.8em;
    font-weight: bold;
    text-shadow: 0 0 15px var(--primary-glow);
}

/* Highscore */
.highscore-list {
    background: var(--glass-bg);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    border: 2px solid var(--glass-border);
}

.highscore-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.highscore-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.highscore-rank {
    font-size: 2em;
    font-weight: bold;
    width: 60px;
    text-align: center;
}

.highscore-rank.gold {
    color: #FFD700;
    text-shadow: 0 0 20px #FFD700;
    animation: goldShine 2s ease-in-out infinite;
}

.highscore-rank.silver {
    color: #C0C0C0;
    text-shadow: 0 0 20px #C0C0C0;
}

.highscore-rank.bronze {
    color: #CD7F32;
    text-shadow: 0 0 20px #CD7F32;
}

@keyframes goldShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
}

.highscore-nick {
    flex: 1;
    font-weight: 700;
    font-size: 1.2em;
    color: var(--primary);
}

.highscore-stats {
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1em;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 8, 20, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid var(--primary);
    border-right: 5px solid var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 50px var(--primary-glow);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-overlay p {
    color: var(--primary);
    margin-top: 30px;
    font-size: 1.5em;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: loadingPulse 1.5s ease-in-out infinite;
}

@keyframes loadingPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Instruction Content */
.instruction-content {
    text-align: left;
    margin: 30px 0;
    line-height: 1.8;
}

.instruction-content p {
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.8);
}

.instruction-content ol {
    margin-left: 30px;
    line-height: 2.5;
}

.instruction-content ol li {
    color: rgba(255, 255, 255, 0.8);
    margin: 15px 0;
}

.instruction-content strong {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.tutorial-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    border: 2px solid var(--glass-border);
}

/* Button Group */
.button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.button-group .btn {
    flex: 1;
    min-width: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card {
        padding: 30px;
    }
    
    .logo h1 {
        font-size: 3em;
    }
    
    .audio-pair {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .button-group .btn {
        width: 100%;
    }
    
    .highscore-item {
        flex-wrap: wrap;
    }
    
    .highscore-stats {
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .card {
        padding: 20px;
        border-radius: 20px;
    }
    
    .logo h1 {
        font-size: 2.5em;
    }
    
    .btn {
        padding: 15px 25px;
        font-size: 16px;
    }
}

/* Heading Styles */
h2, h3 {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px var(--primary-glow);
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

p {
    line-height: 1.8;
}

/* Sound Toggle Button */
.sound-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--primary);
    font-size: 1.5em;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--primary-glow);
}

.sound-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--primary-glow);
    background: rgba(0, 240, 255, 0.1);
}

.sound-toggle.muted {
    color: var(--error);
    border-color: var(--error);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.3);
}

.sound-toggle.muted::before {
    content: '🔇';
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
    box-shadow: 0 0 10px var(--primary-glow);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}
