/* ===============================================
   SAWAD-INSPIRED PORTFOLIO DESIGN
   Modern, Dark Theme with Orange & Lime Accents
   =============================================== */

/* CSS Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --bg-primary: #151312;
    --bg-secondary: #1a1918;
    --bg-card: #ffffff;
    --accent-orange: #F46C38;
    --accent-orange-light: #FF8A5B;
    --accent-lime: #C5FF41;
    --accent-purple: #6366F1;
    --accent-teal: #14B8A6;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --text-dark: #151312;
    --border-color: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;

    /* Spacing - scaled down */
    --sidebar-width: 280px;
    --content-padding: 40px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 14px; /* Scale down base font */
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Page Layout */
.page-wrapper {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    min-height: 100vh;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

/* Blue glow border effect */
.page-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border: 2px solid rgba(59, 130, 246, 0.2);
    z-index: 9999;
}

/* ===============================================
   PROFILE SIDEBAR
   =============================================== */
.profile-sidebar {
    position: sticky;
    top: 30px;
    height: fit-content;
    padding: 30px 20px;
    z-index: 100;
}

.profile-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 25px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.5);
}

.profile-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.dashed-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.profile-image-wrapper {
    position: relative;
    z-index: 2;
    width: 140px;
    height: 170px;
    margin: 0 auto 18px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    box-shadow: 0 12px 30px rgba(244, 108, 56, 0.3);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.profile-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.profile-icon {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.profile-bio {
    font-size: 0.85rem;
    color: rgba(21, 19, 18, 0.65);
    line-height: 1.6;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(21, 19, 18, 0.15);
    border-radius: 50%;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(244, 108, 56, 0.4);
}

/* ===============================================
   MAIN CONTENT
   =============================================== */
.main-content {
    padding: var(--content-padding);
    padding-left: 40px;
    max-width: 800px;
}

/* ===============================================
   SECTION TITLES - SAWAD LAYERED EFFECT
   =============================================== */
.section-title {
    margin-bottom: 35px;
    position: relative;
}

.title-line {
    display: block;
    position: relative;
    height: clamp(35px, 5vw, 55px);
}

.title-outline-bg {
    position: absolute;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
    top: 0;
    left: 0;
}

.title-solid {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
}

.title-solid-small {
    position: absolute;
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

/* ===============================================
   HERO SECTION
   =============================================== */
.hero-section {
    padding: 30px 0 40px;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    margin-bottom: 25px;
}

.hero-title .title-line {
    height: clamp(40px, 7vw, 65px);
}

.hero-title .title-outline-bg {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
}

.hero-title .title-solid {
    font-size: clamp(2.2rem, 6vw, 4rem);
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.8;
}

.text-link {
    color: var(--accent-orange);
    text-decoration: none;
    border-bottom: 1px dashed var(--accent-orange);
    transition: var(--transition-fast);
}

.text-link:hover {
    color: var(--accent-lime);
    border-color: var(--accent-lime);
}

/* ===============================================
   STATS SECTION
   =============================================== */
.stats-section {
    padding: 25px 0 40px;
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stats-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 18px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
    font-weight: 500;
}

/* Stat Tags */
.stat-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.stat-tags:hover {
    border-color: var(--accent-orange);
}

.stat-tag {
    flex: 1;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.8px;
}

.stat-tag-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-orange);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: 0.8rem;
}

.stat-tag-link:hover {
    background: var(--accent-lime);
    color: var(--text-dark);
    transform: scale(1.1);
}

/* ===============================================
   EXPERIENCE SECTION - TIMELINE LAYOUT
   =============================================== */
.experience-section {
    padding: 50px 0;
}

/* Timeline Container */
.timeline-container {
    position: relative;
    padding-left: 0;
}

/* Vertical Timeline Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        var(--accent-orange) 0%, 
        var(--accent-orange) 30%,
        var(--border-color) 30%,
        var(--border-color) 100%);
    transform: translateX(-50%);
}

/* Timeline Row */
.timeline-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 30px;
    position: relative;
}

.timeline-row:last-child {
    margin-bottom: 0;
}

/* Timeline Date (Left side) */
.timeline-date-left {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 20px;
}

.timeline-date-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Timeline Node (Center) */
.timeline-node {
    width: 14px;
    height: 14px;
    background: var(--accent-orange);
    border: 3px solid var(--bg-primary);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    margin-top: 20px;
    box-shadow: 0 0 0 4px rgba(244, 108, 56, 0.2);
}

.timeline-node.node-lime {
    background: var(--accent-lime);
    box-shadow: 0 0 0 4px rgba(197, 255, 65, 0.2);
}

/* Timeline Content Areas */
.timeline-content-left,
.timeline-content-right {
    min-width: 0;
}

.timeline-content-left {
    display: flex;
    justify-content: flex-end;
}

.timeline-content-right {
    display: flex;
    justify-content: flex-start;
}

/* Experience Card */
.experience-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    transition: var(--transition-normal);
    max-width: 100%;
}

.experience-card.featured {
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, rgba(244, 108, 56, 0.08) 0%, var(--bg-secondary) 100%);
}

.experience-card.msu-card {
    border-color: var(--accent-lime);
    background: linear-gradient(135deg, rgba(197, 255, 65, 0.05) 0%, var(--bg-secondary) 100%);
}

.experience-card.purdue-card {
    border-color: var(--border-color);
}

.experience-card:hover {
    border-color: var(--accent-lime);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(197, 255, 65, 0.1);
}

.experience-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.experience-role {
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.experience-date-badge {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 14px;
}

/* Experience Bullet Points - Better Typography */
.experience-bullets {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.experience-bullets li {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    padding-left: 18px;
    position: relative;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.experience-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    background: var(--accent-orange);
    border-radius: 50%;
}

.experience-card.msu-card .experience-bullets li::before {
    background: var(--accent-lime);
}

.experience-bullets li strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.experience-bullets li a {
    color: var(--accent-orange);
    text-decoration: none;
    border-bottom: 1px dashed var(--accent-orange);
    transition: var(--transition-fast);
}

.experience-bullets li a:hover {
    color: var(--accent-lime);
    border-color: var(--accent-lime);
}

/* ===============================================
   PROJECTS SECTION
   =============================================== */
.projects-section {
    padding: 50px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.project-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 18px 40px rgba(244, 108, 56, 0.15);
}

.project-card.featured-project {
    grid-column: span 1;
}

.project-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    position: relative;
}

.project-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-badge {
    display: inline-block;
    background: rgba(244, 108, 56, 0.15);
    color: var(--accent-orange);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 8px;
    width: fit-content;
}

.project-badge.lime {
    background: rgba(197, 255, 65, 0.15);
    color: var(--accent-lime);
}

.project-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.project-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
    flex: 1;
    line-height: 1.5;
}

.project-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.project-tags span {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 500;
}

/* ===============================================
   TOOLS SECTION
   =============================================== */
.tools-section {
    padding: 50px 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.tool-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-normal);
}

.tool-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(244, 108, 56, 0.15);
}

.tool-icon {
    font-size: 1.6rem;
    color: var(--accent-orange);
    margin-bottom: 10px;
    transition: var(--transition-normal);
}

.tool-card:hover .tool-icon {
    color: var(--accent-lime);
    transform: scale(1.1);
}

.tool-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.tool-card p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ===============================================
   EDUCATION SECTION
   =============================================== */
.education-section {
    padding: 50px 0;
}

.education-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    transition: var(--transition-normal);
}

.education-card:hover {
    border-color: var(--accent-orange);
}

.education-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.education-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.education-degree {
    font-size: 0.85rem;
    color: var(--accent-orange);
    font-weight: 500;
    margin-bottom: 5px;
}

.education-details {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.6;
}

.education-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gpa-badge {
    background: var(--accent-lime);
    color: var(--text-dark);
    padding: 7px 14px;
    border-radius: 18px;
    font-size: 0.75rem;
    font-weight: 700;
}

.graduation-date {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 7px 14px;
    border-radius: 18px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ===============================================
   CONTACT SECTION
   =============================================== */
.contact-section {
    padding: 50px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.contact-form {
    max-width: 400px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 2px rgba(244, 108, 56, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.submit-btn {
    width: 100%;
    padding: 14px 22px;
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: var(--accent-lime);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(197, 255, 65, 0.3);
}

.submit-btn i {
    transition: var(--transition-fast);
    font-size: 0.8rem;
}

.submit-btn:hover i {
    transform: translateX(4px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.contact-item:hover {
    border-color: var(--accent-orange);
    transform: translateX(4px);
}

.contact-item i {
    font-size: 0.9rem;
    color: var(--accent-orange);
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.78rem;
    transition: var(--transition-fast);
}

.contact-item:hover a {
    color: var(--text-primary);
}

/* ===============================================
   FOOTER
   =============================================== */
.footer {
    padding: 35px 0;
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer .highlight {
    color: var(--accent-orange);
    font-weight: 500;
}

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

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card.featured-project {
        grid-column: span 1;
    }
}

@media (max-width: 1024px) {
    :root {
        --sidebar-width: 300px;
        --content-padding: 40px;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-content {
        padding-left: 40px;
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        grid-template-columns: 1fr;
    }

    .profile-sidebar {
        position: relative;
        top: 0;
        padding: 25px 20px;
    }

    .profile-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .main-content {
        padding: 30px 25px;
    }

    .hero-title .title-line {
        height: 50px;
    }

    .hero-title .title-outline-bg {
        font-size: 2.5rem;
    }

    .hero-title .title-solid {
        font-size: 2.2rem;
    }

    .title-line {
        height: 40px;
    }

    .title-outline-bg {
        font-size: 2rem;
    }

    .title-solid {
        font-size: 1.8rem;
    }

    .title-solid-small {
        position: relative;
        display: block;
        transform: none;
        margin-bottom: 5px;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .education-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .tools-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Timeline Mobile Layout */
    .timeline-container {
        padding-left: 20px;
    }

    .timeline-line {
        left: 10px;
        transform: none;
    }

    .timeline-row {
        grid-template-columns: auto 1fr;
        gap: 15px;
    }

    .timeline-date-left {
        display: none;
    }

    .timeline-node {
        margin-top: 0;
    }

    .timeline-content-right {
        grid-column: 2;
    }

    .experience-card h3 {
        font-size: 0.9rem;
    }

    .experience-bullets li {
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .hero-title .title-outline-bg {
        font-size: 2rem;
    }

    .hero-title .title-solid {
        font-size: 1.8rem;
    }

    .title-outline-bg {
        font-size: 1.5rem;
    }

    .title-solid {
        font-size: 1.5rem;
    }

    .stats-grid {
        justify-content: flex-start;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .education-stats {
        justify-content: center;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange-light);
}

/* Selection */
::selection {
    background: var(--accent-orange);
    color: white;
}

::-moz-selection {
    background: var(--accent-orange);
    color: white;
}
