@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* إخفاء عناصر الموقع عند بداية التحميل */
body.hide-content .header,
body.hide-content .hero,
body.hide-content .section,
body.hide-content .control-panel,
body.hide-content .footer {
  display: none;
  overflow: hidden;
    height: 100vh;
}

body.hide-content {
    overflow: hidden;
    height: 100vh;
}


/* شاشة البداية */
#introScreen {
    background-image: url('\gg.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* background:  rgba(0, 0, 0, 0.9);*/
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
  }
  
  .intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .intro-title {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
  }
  
  .solid-underline {
    width: 120px;
    height: 4px;
    background-color: #38bdf8;
    border-radius: 2px;
  }
  
  .click-hint {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-top: 1rem;
  }
  


#volumeControl {
    margin-bottom: 1.5rem;
}

#volumeControl h4 {
    margin-bottom: 0.75rem;
    color: var(--accent-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
}

:root {
    --primary-bg: #0f0f0f;
    --secondary-bg: #1a1a1a;
    --card-bg: #222222;
    --accent-primary: #6b7280;
    --accent-secondary: #9ca3af;
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --border-color: #374151;
    --glow-color: rgba(156, 163, 175, 0.3);
    --gradient-primary: linear-gradient(135deg, #6b7280, #9ca3af);
    --gradient-bg: linear-gradient(135deg, #222222, #1a1a1a);
    --code-color: #e5e7eb;
    --comment-color: #6b7280;
    --keyword-color: #f3f4f6;
    --string-color: #d1d5db;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}


.code-font {
    font-family: 'JetBrains Mono', monospace;
}

/* Coding Background Effect */
.coding-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    font-family: 'JetBrains Mono', monospace;
    overflow: hidden;
    pointer-events: none;
}

.code-line {
    position: absolute;
    white-space: nowrap;
    color: var(--accent-primary);
    font-size: 12px;
    animation: float-code 15s linear infinite;
}

@keyframes float-code {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100vw);
        opacity: 0;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.theme-toggle {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px var(--glow-color);
}

/* Hero Section */
.hero {
    background-image: url('\gg.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

/* Enhanced Hero Text */
.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px var(--accent-primary);
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, var(--accent-primary), transparent 60%);
    background-size: 200% 200%;
    background-position: -200% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-family: 'JetBrains Mono', monospace;
}

.typing-text {
    border-right: 2px solid var(--accent-primary);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { border-color: var(--accent-primary); }
    51%, 100% { border-color: transparent; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Enhanced Buttons */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-bg);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.05));
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    box-shadow: 
        0 15px 35px rgba(107, 114, 128, 0.4),
        0 0 30px var(--accent-primary);
    animation: pulse 2s infinite;
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 30px var(--glow-color);
    color: var(--accent-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Social Links with Brand Colors */
.social-link {
    width: 60px;
    height: 60px;
    background: #36393f;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b9bbbe;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    font-size: 24px;
}

/* Discord - Purple */
.social-link:nth-child(1) {
    background: #36393f;
    color: #5865f2;
}

.social-link:nth-child(1):hover {
    background: #5865f2;
    color: white;
    border-color: #5865f2;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.4);
    animation: iconShake 0.5s ease-in-out;
}

/* Steam - Blue */
.social-link:nth-child(2) {
    background: #36393f;
    color: #1b2838;
}

.social-link:nth-child(2):hover {
    background: #1b2838;
    color: white;
    border-color: #1b2838;
    box-shadow: 0 0 30px rgba(27, 40, 56, 0.4);
    animation: iconSpin 1s linear;
}

/* Instagram - Gradient */
.social-link:nth-child(3) {
    background: #36393f;
    color: #e4405f;
}

.social-link:nth-child(3):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: #e4405f;
    box-shadow: 0 0 30px rgba(228, 64, 95, 0.4);
    animation: iconFloat 2s ease-in-out infinite;
}

/* TikTok - Black/Red */
.social-link:nth-child(4) {
    background: #36393f;
    color: #fe2c55;
}

.social-link:nth-child(4):hover {
    background: #000000;
    color: #fe2c55;
    border-color: #fe2c55;
    box-shadow: 0 0 30px rgba(254, 44, 85, 0.4);
    animation: iconPulse 1s ease-in-out infinite;
}

/* Twitch - Purple */
.social-link:nth-child(5) {
    background: #36393f;
    color: #9146ff;
}

.social-link:nth-child(5):hover {
    background: #9146ff;
    color: white;
    border-color: #9146ff;
    box-shadow: 0 0 30px rgba(145, 70, 255, 0.4);
    animation: iconShake 0.3s ease-in-out infinite;
}

/* Kick - Green */
.social-link:nth-child(6) {
    background: #36393f;
    color: #53fc18;
}

.social-link:nth-child(6):hover {
    background: #53fc18;
    color: #000000;
    border-color: #53fc18;
    box-shadow: 0 0 30px rgba(83, 252, 24, 0.4);
    animation: iconPulse 1.5s ease-in-out infinite;
}

/* Common hover effects for all social links */
.social-link:hover {
    transform: translateY(-8px) scale(1.1);
}

/* Discord Special Widget */
.discord-special {
    position: relative;
}

.discord-widget {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    background: #2f3136;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.discord-special:hover .discord-widget {
    opacity: 1;
    visibility: visible;
    top: -140px;
}

.discord-header {
    background: #5865f2;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.discord-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #36393f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.discord-info {
    flex: 1;
}

.server-name {
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
}

.online-count {
    color: #b9bbbe;
    font-size: 12px;
    font-weight: 500;
}

.discord-footer {
    background: #36393f;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.discord-footer i:first-child {
    color: #5865f2;
}

.discord-footer i:last-child {
    margin-left: auto;
    font-size: 12px;
}

/* Kick Platform Styling - Removed, now using brand colors above */

/* About Section */
.section {
    
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    text-align: center;
}

.profile-img {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid var(--accent-primary);
    box-shadow: 0 0 30px var(--glow-color);
    transition: all 0.4s ease;
}

.profile-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 50px var(--glow-color);
}

/* GIF Support */
.profile-img.gif {
    border-radius: 20px;
    border: 3px solid var(--accent-primary);
    animation: profileGlow 3s ease-in-out infinite alternate;
}

@keyframes profileGlow {
    from {
        box-shadow: 0 0 20px var(--glow-color);
        filter: brightness(1);
    }
    to {
        box-shadow: 0 0 40px var(--accent-primary);
        filter: brightness(1.1);
    }
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

/* Enhanced Skills Grid */
.skill-item {
    background: linear-gradient(135deg, var(--card-bg), #2a2a2a);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(107, 114, 128, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-item:hover::before {
    opacity: 1;
}

.skill-item:hover {
    border-color: var(--accent-primary);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 30px var(--glow-color),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-10px) rotateY(5deg);
}

.skill-item i {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    display: block;
}

.skill-item:hover i {
    transform: scale(1.2) rotateY(180deg);
    filter: drop-shadow(0 0 15px var(--accent-primary));
    animation: iconPulse 1.5s ease-in-out infinite;
}

.skill-item:nth-child(1):hover i { animation: iconSpin 2s linear infinite; }
.skill-item:nth-child(2):hover i { animation: iconShake 0.5s ease-in-out infinite; }
.skill-item:nth-child(3):hover i { animation: iconFloat 2s ease-in-out infinite; }
.skill-item:nth-child(4):hover i { animation: iconPulse 1s ease-in-out infinite; }
.skill-item:nth-child(5):hover i { animation: iconSpin 1s linear infinite reverse; }
.skill-item:nth-child(6):hover i { animation: iconShake 0.3s ease-in-out infinite; }

/* Terminal Section */
.terminal {
    background: #000;
    border-radius: 12px;
    margin: 3rem 0;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    background: #2d2d2d;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28ca42; }

.terminal-body {
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.terminal-line {
    margin-bottom: 0.5rem;
}

.prompt {
    color: var(--accent-primary);
}

.command {
    color: #ffffff;
}

.output {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--secondary-bg);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }
}

/* Advanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px var(--glow-color);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px var(--glow-color);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
    }
    50% {
        transform: translateY(-5px) rotate(-5deg);
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.2);
        filter: brightness(1.5) drop-shadow(0 0 15px var(--accent-primary));
    }
}

@keyframes iconSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes iconShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 5px var(--accent-primary), 0 0 10px var(--accent-primary), 0 0 15px var(--accent-primary);
    }
    50% {
        box-shadow: 0 0 10px var(--accent-primary), 0 0 20px var(--accent-primary), 0 0 30px var(--accent-primary);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px var(--accent-primary), 0 0 10px var(--accent-primary);
    }
    50% {
        text-shadow: 0 0 10px var(--accent-primary), 0 0 20px var(--accent-primary), 0 0 30px var(--accent-primary);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-left {
    animation: slideInLeft 0.8s ease forwards;
}

.animate-right {
    animation: slideInRight 0.8s ease forwards;
}

.animate-scale {
    animation: scaleIn 0.8s ease forwards;
}

.animate-rotate {
    animation: rotateIn 0.8s ease forwards;
}

.animate-bounce {
    animation: bounceIn 0.8s ease forwards;
}

/* Enhanced Particle System */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.particle-glow {
    background: var(--accent-primary);
    opacity: 0.8;
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 20px var(--accent-primary);
}

.particle-code {
    background: transparent;
    color: var(--accent-primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    opacity: 0.6;
    animation: floatCode 12s linear infinite;
}

.particle-icon {
    color: var(--accent-primary);
    font-size: 16px;
    opacity: 0.7;
    animation: iconFloat 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.2);
        opacity: 1;
    }
    50% { 
        transform: translateY(-60px) rotate(180deg) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-30px) rotate(270deg) scale(1.1);
        opacity: 0.9;
    }
}

@keyframes floatCode {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Code Editor Theme Toggle */
.theme-light {
    --primary-bg: #ffffff;
    --secondary-bg: #f8f9fa;
    --card-bg: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --border-color: #e0e0e0;
}

/* Control Panel */
.control-panel {
    position: fixed;
    top: 50%;
    right: -300px;
    transform: translateY(-50%);
    width: 280px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px 0 0 12px;
    padding: 1.5rem;
    transition: right 0.3s ease;
    z-index: 1001;
}

.control-panel.open {
    right: 0;
}

.control-toggle {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-primary);
    color: var(--primary-bg);
    border: none;
    padding: 0.75rem;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
}

.control-section {
    margin-bottom: 1.5rem;
}

.control-section h4 {
    margin-bottom: 0.75rem;
    color: var(--accent-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.color-picker {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-option.active {
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px var(--glow-color);
}

.slider-group {
    margin-bottom: 1rem;
}

.slider-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.slider {
    width: 100%;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent-primary);
    border-radius: 50%;
    cursor: pointer;
}