/* ========================================
   DJ LEO - Professional Dark Theme
   Modern & Clean Design
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-dark: #0a0a0a;
    --color-dark-gray: #141414;
    --color-gray: #1a1a1a;
    --color-mid-gray: #2a2a2a;
    --color-light-gray: #888888;
    --color-white: #ffffff;
    --color-off-white: #f5f5f5;
    --color-accent: #ffffff;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   INTRO SCREEN - Dark Mixer Theme
   ======================================== */

.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

.intro-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Vinyl Disc Background */
.vinyl-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0.08;
}

.vinyl-disc {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: repeating-radial-gradient(
        circle at center,
        #111 0px,
        #111 2px,
        #1a1a1a 2px,
        #1a1a1a 4px
    );
    position: relative;
    animation: vinylSpin 8s linear infinite;
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #0a0a0a;
    border: 2px solid #222;
}

.vinyl-label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #333;
}

@keyframes vinylSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mixer Grid Background */
.mixer-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.intro-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    animation: introFadeIn 1s ease forwards;
    position: relative;
    z-index: 2;
}

@keyframes introFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* VU Meters */
.vu-meter {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px 10px;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
}

.vu-bar {
    width: 8px;
    height: 80px;
    background: #111;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.vu-bar span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, #00ff00 0%, #00ff00 60%, #ffff00 80%, #ff0000 100%);
    border-radius: 2px;
    animation: vuPulse 0.8s ease-in-out infinite alternate;
}

.vu-meter.left .vu-bar:nth-child(1) span { height: 85%; animation-delay: 0s; }
.vu-meter.left .vu-bar:nth-child(2) span { height: 70%; animation-delay: 0.15s; }
.vu-meter.left .vu-bar:nth-child(3) span { height: 90%; animation-delay: 0.3s; }
.vu-meter.right .vu-bar:nth-child(1) span { height: 75%; animation-delay: 0.1s; }
.vu-meter.right .vu-bar:nth-child(2) span { height: 95%; animation-delay: 0.2s; }
.vu-meter.right .vu-bar:nth-child(3) span { height: 65%; animation-delay: 0.05s; }

@keyframes vuPulse {
    0% { transform: scaleY(0.7); filter: brightness(0.8); }
    100% { transform: scaleY(1); filter: brightness(1.2); }
}

.intro-logo {
    text-align: center;
    padding: 30px 40px;
    background: linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    position: relative;
}

.intro-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #333, transparent);
}

/* Waveform */
.waveform {
    height: 25px;
    overflow: hidden;
    opacity: 0.4;
}

.waveform svg {
    width: 100%;
    height: 100%;
}

.wave-path {
    fill: none;
    stroke: #00ff88;
    stroke-width: 1.5;
    animation: waveMove 2s linear infinite;
}

.waveform.bottom .wave-path {
    stroke: #0088ff;
}

@keyframes waveMove {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: 50; }
}

.wave-path {
    stroke-dasharray: 5 3;
}

/* Logo Main */
.logo-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin: 25px 0;
}

.logo-block {
    text-align: center;
    padding: 15px 25px;
    background: #0c0c0c;
    border: 1px solid #222;
    border-radius: 4px;
    position: relative;
}

.block-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.6rem;
    font-weight: 500;
    color: #444;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.block-text {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.dj-block .block-text {
    color: #888;
}

.name-block .block-text {
    background: linear-gradient(180deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fader */
.logo-fader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.fader-track {
    width: 8px;
    height: 100px;
    background: #111;
    border-radius: 4px;
    position: relative;
    border: 1px solid #222;
}

.fader-knob {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    width: 20px;
    height: 12px;
    background: linear-gradient(180deg, #444 0%, #222 100%);
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    animation: faderMove 3s ease-in-out infinite;
}

@keyframes faderMove {
    0%, 100% { top: 20%; }
    50% { top: 60%; }
}

/* Channel Info */
.channel-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #1a1a1a;
}

.channel-item {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: #00ff88;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.channel-item i {
    animation: discSpin 2s linear infinite;
}

@keyframes discSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.channel-divider {
    color: #333;
    font-size: 0.8rem;
}

/* Enter Button */
.intro-enter {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: #0a0a0a;
    border: 1px solid #333;
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.btn-indicator {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: indicatorBlink 1s ease-in-out infinite;
    box-shadow: 0 0 10px #00ff00;
}

@keyframes indicatorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.intro-enter:hover {
    background: #111;
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.intro-enter:hover .btn-indicator {
    background: #00ff88;
    box-shadow: 0 0 15px #00ff88;
}

.intro-enter:hover .enter-icon {
    transform: scale(1.2);
    color: #00ff88;
}

.enter-icon {
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

/* Hint */
.intro-hint {
    margin-top: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: #555;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rec-dot {
    width: 6px;
    height: 6px;
    background: #ff0000;
    border-radius: 50%;
    animation: recBlink 1s ease-in-out infinite;
    box-shadow: 0 0 8px #ff0000;
}

@keyframes recBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* Bottom Meters */
.bottom-meters {
    position: absolute;
    bottom: 40px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
}

.meter-bar {
    width: 4px;
    height: 100%;
    background: #111;
    border-radius: 2px;
    overflow: hidden;
}

.meter-bar span {
    display: block;
    width: 100%;
    background: linear-gradient(to top, #00ff88, #00ffcc);
    border-radius: 2px;
    animation: meterPulse 0.6s ease-in-out infinite alternate;
}

.meter-bar:nth-child(1) span { height: 40%; animation-delay: 0s; }
.meter-bar:nth-child(2) span { height: 70%; animation-delay: 0.1s; }
.meter-bar:nth-child(3) span { height: 50%; animation-delay: 0.2s; }
.meter-bar:nth-child(4) span { height: 90%; animation-delay: 0.15s; }
.meter-bar:nth-child(5) span { height: 100%; animation-delay: 0.05s; }
.meter-bar:nth-child(6) span { height: 60%; animation-delay: 0.25s; }
.meter-bar:nth-child(7) span { height: 80%; animation-delay: 0.1s; }
.meter-bar:nth-child(8) span { height: 45%; animation-delay: 0.2s; }

@keyframes meterPulse {
    0% { transform: scaleY(0.5); opacity: 0.6; }
    100% { transform: scaleY(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .vu-meter {
        flex-direction: row;
    }
    
    .vu-meter.left, .vu-meter.right {
        display: none;
    }
    
    .vu-bar {
        width: 60px;
        height: 8px;
    }
    
    .vu-bar span {
        height: 100%;
        width: auto;
        left: 0;
        bottom: 0;
        top: 0;
        background: linear-gradient(to right, #00ff00 0%, #00ff00 60%, #ffff00 80%, #ff0000 100%);
    }
    
    .logo-main {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-fader {
        flex-direction: row;
    }
    
    .fader-track {
        width: 80px;
        height: 8px;
    }
    
    .fader-knob {
        width: 12px;
        height: 16px;
        top: 50%;
        left: 20%;
        transform: translateY(-50%);
    }
    
    @keyframes faderMove {
        0%, 100% { left: 20%; }
        50% { left: 60%; }
    }
}

.intro-equalizer span:nth-child(1) { height: 15px; animation-delay: 0s; }
.intro-equalizer span:nth-child(2) { height: 30px; animation-delay: 0.1s; }
.intro-equalizer span:nth-child(3) { height: 20px; animation-delay: 0.2s; }
.intro-equalizer span:nth-child(4) { height: 35px; animation-delay: 0.3s; }
.intro-equalizer span:nth-child(5) { height: 25px; animation-delay: 0.4s; }

@keyframes eqBar {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1); }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-dark);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Background */
.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(40, 40, 40, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(30, 30, 30, 0.4) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-dark) 0%, var(--color-black) 100%);
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.nav-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-white);
}

.logo-highlight {
    color: var(--color-light-gray);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 25px;
}

.audio-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-gray);
    border: 1px solid var(--color-mid-gray);
    color: var(--color-light-gray);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-toggle:hover {
    background: var(--color-mid-gray);
    color: var(--color-white);
    border-color: var(--color-light-gray);
}

.audio-toggle.playing {
    color: var(--color-white);
    animation: audioPulse 2s ease-in-out infinite;
}

@keyframes audioPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
}

.nav-social {
    display: flex;
    gap: 20px;
}

.nav-social a {
    color: var(--color-light-gray);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.nav-social a:hover {
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
}

.hero-content {
    max-width: 900px;
    margin-bottom: 60px;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-light-gray);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-title {
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--color-white);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.5s; }

.title-accent {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-light-gray);
    max-width: 500px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

/* Countdown */
.countdown-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.7s;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-light-gray);
    margin-top: 10px;
}

.countdown-divider {
    width: 1px;
    height: 50px;
    background: var(--color-mid-gray);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 20px;
    background: var(--color-dark-gray);
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-white);
}

.newsletter-text {
    font-size: 1rem;
    color: var(--color-light-gray);
    margin-bottom: 30px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 24px;
    background: var(--color-gray);
    border: 1px solid var(--color-mid-gray);
    border-radius: 8px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-normal);
}

.newsletter-form input::placeholder {
    color: var(--color-light-gray);
}

.newsletter-form input:focus {
    border-color: var(--color-light-gray);
    background: var(--color-mid-gray);
}

.newsletter-form button {
    padding: 18px 32px;
    background: var(--color-white);
    border: none;
    border-radius: 8px;
    color: var(--color-black);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--color-off-white);
    transform: translateY(-2px);
}

.newsletter-form button i {
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.newsletter-form button:hover i {
    transform: translateX(4px);
}

.form-note {
    font-size: 0.8rem;
    color: var(--color-light-gray);
    opacity: 0.7;
}

/* Social Section */
.social-section {
    padding: 60px 20px;
    text-align: center;
}

.social-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-light-gray);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--color-gray);
    border: 1px solid var(--color-mid-gray);
    border-radius: 50px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-normal);
}

.social-link i {
    font-size: 1.1rem;
    color: var(--color-light-gray);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--color-mid-gray);
    border-color: var(--color-light-gray);
    transform: translateY(-3px);
}

.social-link:hover i {
    color: var(--color-white);
}

/* Footer */
.footer {
    padding: 40px 20px;
    border-top: 1px solid var(--color-gray);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.85rem;
    color: var(--color-light-gray);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-light-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.5s;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--color-white) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 20px 25px;
    }
    
    .hero {
        padding: 100px 20px 40px;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-divider {
        height: 30px;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
    
    .social-link span {
        display: none;
    }
    
    .social-link {
        padding: 14px 18px;
        border-radius: 50%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
}

/* Selection */
::selection {
    background: var(--color-white);
    color: var(--color-black);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-mid-gray);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-light-gray);
}

/* Smooth loading */
body {
    opacity: 0;
    animation: pageLoad 0.5s ease forwards;
    animation-delay: 0.1s;
}

@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}
