/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.2rem;
}

.logo-image {
    height: 24px;
    width: auto;
}

.logo-text {
    color: #ffffff;
    letter-spacing: 1px;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn-primary, .btn-secondary {
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(90deg, #FF8D0E, #FF5406);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #FF7A00, #E84800);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 141, 14, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #333;
}

.btn-secondary:hover {
    border: 2px solid transparent;
    background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
                linear-gradient(90deg, #FF8D0E, #FF5406) border-box;
    background: linear-gradient(90deg, #FF8D0E, #FF5406);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

.btn-primary.large, .btn-secondary.large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #cccccc;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    background: linear-gradient(90deg, #FF8D0E, #FF5406);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF8D0E, #FF5406);
    border-radius: 2px;
}

/* Hero Screenshot */
.hero-screenshot {
    margin-top: 4rem;
    perspective: 1000px;
    position: relative;
}

.hero-screenshot::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 87, 34, 0.4) 0%,
        rgba(255, 152, 0, 0.3) 25%,
        rgba(255, 193, 7, 0.2) 50%,
        rgba(255, 107, 53, 0.1) 75%,
        transparent 100%);
    border-radius: 50%;
    z-index: -3;
    animation: float 8s ease-in-out infinite, colorShift 12s ease-in-out infinite;
    filter: blur(40px);
}

.hero-screenshot::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -250px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 70% 70%, 
        rgba(255, 140, 66, 0.35) 0%,
        rgba(255, 183, 77, 0.25) 30%,
        rgba(255, 107, 53, 0.15) 60%,
        rgba(255, 87, 34, 0.08) 80%,
        transparent 100%);
    border-radius: 50%;
    z-index: -3;
    animation: float 10s ease-in-out infinite reverse, colorShift 15s ease-in-out infinite reverse;
    filter: blur(35px);
}

.screenshot-container {
    max-width: 900px;
    margin: 0 auto;
    transform: rotateX(5deg) rotateY(-2deg);
    transition: transform 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.screenshot-container::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(135deg, 
        rgba(255, 87, 34, 0.6) 0%,
        rgba(255, 152, 0, 0.4) 25%,
        rgba(255, 193, 7, 0.3) 50%,
        rgba(255, 140, 66, 0.2) 75%,
        rgba(255, 107, 53, 0.1) 100%);
    border-radius: 25px;
    z-index: -1;
    filter: blur(20px);
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

.screenshot-container::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.3) 0%,
        rgba(255, 183, 77, 0.2) 30%,
        transparent 50%,
        rgba(255, 152, 0, 0.15) 70%,
        rgba(255, 87, 34, 0.1) 100%);
    border-radius: 35px;
    z-index: -2;
    filter: blur(30px);
    animation: rotateGlow 20s linear infinite;
}

.screenshot-container:hover {
    transform: rotateX(2deg) rotateY(-1deg) scale(1.02);
}

.screenshot-container:hover::before {
    background: linear-gradient(135deg, 
        rgba(255, 87, 34, 0.8) 0%,
        rgba(255, 152, 0, 0.6) 25%,
        rgba(255, 193, 7, 0.5) 50%,
        rgba(255, 140, 66, 0.4) 75%,
        rgba(255, 107, 53, 0.3) 100%);
    filter: blur(25px);
}

.screenshot-container:hover::after {
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.5) 0%,
        rgba(255, 183, 77, 0.4) 30%,
        transparent 50%,
        rgba(255, 152, 0, 0.3) 70%,
        rgba(255, 87, 34, 0.2) 100%);
    filter: blur(35px);
}

/* Hero Image Styles */
.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 
        0 0 60px rgba(255, 87, 34, 0.4),
        0 0 120px rgba(255, 152, 0, 0.3),
        0 0 180px rgba(255, 193, 7, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.hero-image:hover {
    box-shadow: 
        0 0 80px rgba(255, 87, 34, 0.6),
        0 0 160px rgba(255, 152, 0, 0.4),
        0 0 240px rgba(255, 193, 7, 0.3),
        0 30px 60px rgba(0, 0, 0, 0.5);
    transform: scale(1.01);
}

/* Hero CTA */
.hero-cta {
    text-align: center;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-cta-btn {
    font-size: 1.1rem;
    padding: 18px 36px;
    box-shadow: 0 8px 30px rgba(255, 141, 14, 0.3);
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 141, 14, 0.4);
}

/* YouTube Mockup Styles (keeping for reference) */
.youtube-mockup {
    background: #0f0f0f;
    border-radius: 12px;
    overflow: hidden;
    font-size: 14px;
}

.youtube-header {
    background: #0f0f0f;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.youtube-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 600;
}

.yt-icon {
    background: #ff0000;
    color: white;
    padding: 4px 6px;
    border-radius: 3px;
    font-size: 12px;
}

.search-bar-yt {
    background: #121212;
    border: 1px solid #333;
    padding: 8px 16px;
    border-radius: 20px;
    color: #888;
    min-width: 300px;
    text-align: left;
}

.user-controls {
    display: flex;
    gap: 16px;
    align-items: center;
    color: #ffffff;
}

.avatar {
    background: #4CAF50;
    border-radius: 50%;
    padding: 4px 8px;
}

.youtube-content {
    display: flex;
    min-height: 500px;
}

.video-section {
    flex: 2;
    padding: 20px;
    background: #0f0f0f;
}

.video-player {
    margin-bottom: 20px;
}

.video-thumbnail {
    background: linear-gradient(135deg, #d4a574, #c49668);
    height: 300px;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 16px;
}

.video-title-overlay {
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.video-controls {
    margin-top: 10px;
}

.progress-bar {
    height: 4px;
    background: #333;
    border-radius: 2px;
    margin-bottom: 10px;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2%;
    background: #ff0000;
    border-radius: 2px;
}

.control-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
}

.time {
    color: #aaa;
    font-size: 12px;
}

.video-info h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.channel-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.channel-name {
    color: #aaa;
    font-size: 14px;
}

.subscribers {
    color: #aaa;
    font-size: 12px;
}

.subscribe-btn {
    background: #cc0000;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* Knugget Sidebar */
.knugget-sidebar {
    flex: 1;
    background: #1a1a1a;
    border-left: 1px solid #333;
    padding: 20px;
    max-width: 400px;
}

.knugget-header {
    margin-bottom: 20px;
}

.knugget-logo {
    background: linear-gradient(90deg, #FF8D0E, #FF5406);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 16px;
}

.knugget-tabs {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 12px;
}

.tab {
    color: #888;
    padding: 8px 0;
    cursor: pointer;
    font-size: 14px;
}

.tab.active {
    background: linear-gradient(90deg, #FF8D0E, #FF5406);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #FF8D0E, #FF5406) 1;
}

.generate-btn {
    background: linear-gradient(90deg, #FF8D0E, #FF5406);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-left: auto;
}

.knugget-content h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.takeaway {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.bullet {
    background: linear-gradient(90deg, #FF8D0E, #FF5406);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 8px;
    margin-top: 6px;
}

.takeaway p {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.view-knuggets {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.view-btn {
    background: linear-gradient(90deg, #FF8D0E, #FF5406);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
}

.save-btn {
    background: transparent;
    background: linear-gradient(90deg, #FF8D0E, #FF5406);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 2px solid;
    border-image: linear-gradient(90deg, #FF8D0E, #FF5406) 1;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.mock-browser {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.browser-header {
    background: #2a2a2a;
    padding: 12px 20px;
    border-bottom: 1px solid #333;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
}

.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27ca3f; }

.browser-content {
    padding: 0;
    min-height: 500px;
}

/* Knugget Interface */
.knugget-interface {
    display: flex;
    height: 500px;
}

.sidebar {
    width: 250px;
    background: #151515;
    padding: 20px;
    border-right: 1px solid #333;
}

.sidebar-header {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ff6b35;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section h4 {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.source-item, .topic-item {
    padding: 8px 12px;
    margin-bottom: 4px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.source-item:hover, .topic-item:hover {
    background: #2a2a2a;
}

.main-content {
    flex: 1;
    padding: 20px;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.content-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.search-bar {
    background: #2a2a2a;
    padding: 10px 16px;
    border-radius: 6px;
    color: #888;
    border: 1px solid #333;
    min-width: 200px;
}

.knugget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.knugget-card {
    background: #1f1f1f;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.knugget-card:hover {
    transform: translateY(-2px);
    border-color: #ff6b35;
}

.video-thumbnail {
    height: 120px;
    background: linear-gradient(135deg, #333, #555);
}

.card-content {
    padding: 16px;
}

.card-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-content p {
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(90deg, #FF8D0E, #FF5406);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #050505;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-card.reverse {
    direction: rtl;
}

.feature-card.reverse > * {
    direction: ltr;
}

.feature-content {
    padding: 2rem 0;
}

.feature-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #FF8D0E, #FF5406);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.feature-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #cccccc;
}

.feature-image {
    position: relative;
}

.feature-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 3px solid;
    border-image: linear-gradient(90deg, #FF8D0E, #FF5406) 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-image 0.3s ease;
}

.feature-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-image: linear-gradient(90deg, #FF7A00, #E84800) 1;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    border: 2px solid #ff6b35;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #ff6b35;
    border-radius: 50%;
    opacity: 0.3;
}

.image-placeholder::after {
    content: 'Image Placeholder';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #888;
    font-size: 1rem;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #050505;
    border-top: 1px solid #333;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    background: linear-gradient(90deg, #FF8D0E, #FF5406);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .feature-card {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .feature-title {
        font-size: 2.5rem;
    }
    
    .knugget-interface {
        flex-direction: column;
        height: auto;
    }
    
    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #333;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .feature-title {
        font-size: 2rem;
    }
    
    .feature-description {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .knugget-grid {
        grid-template-columns: 1fr;
    }
    
    .youtube-content {
        flex-direction: column;
    }
    
    .knugget-sidebar {
        max-width: none;
        border-left: none;
        border-top: 1px solid #333;
    }
    
    .search-bar-yt {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .screenshot-container {
        transform: none;
    }
    
    .screenshot-container:hover {
        transform: none;
    }
    
    .features-grid {
        gap: 60px;
    }
    
    .image-placeholder {
        height: 250px;
    }
    
    .youtube-header {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .search-bar-yt {
        min-width: auto;
    }
    
    .video-title-overlay {
        font-size: 24px;
    }
    
    .video-thumbnail {
        height: 200px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes colorShift {
    0%, 100% {
        filter: blur(40px) hue-rotate(0deg);
    }
    33% {
        filter: blur(45px) hue-rotate(15deg);
    }
    66% {
        filter: blur(35px) hue-rotate(-10deg);
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

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

.hero-title, .feature-title {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #FF8D0E, #FF5406);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #FF7A00, #E84800);
}
