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

:root {
    --primary-color: #0f172a;
    --primary-dark: #020617;
    --primary-light: #1e293b;
    --accent-color: #3b82f6;
    --accent-hover: #2563eb;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    min-height: 100vh;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.main-header {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.header-accent-shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(59, 130, 246, 0.3) 100%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}

.header-accent-shape::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, rgba(59, 130, 246, 0.4) 0%, transparent 100%);
    border-radius: 50%;
    filter: blur(60px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    user-select: none;
    transition: transform 0.1s ease;
}

.logo-main {
    color: var(--white);
}

.logo-accent {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::before {
    width: 100%;
}

.admin-link {
    display: none; /* Hidden by default */
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease;
}

.admin-link.visible {
    display: flex;
}

.admin-link:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: var(--accent-color);
}

.admin-link::before {
    display: none;
}

.admin-link .material-symbols-outlined {
    font-size: 18px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.header-hero {
    padding: 2rem 2rem 3rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.company-name {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin: 0;
    line-height: 1;
}

.name-line-2 {
    margin-bottom: 0.25rem;
}

.name-line-1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--white);
}

.name-line-2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--accent-color);
}

.name-line-3 {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.9);
}

.hero-highlights {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.highlight-item {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.highlight-divider {
    color: var(--accent-color);
    font-weight: 300;
}

.hero-service-options {
    margin-top: 0.7rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-option-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    position: relative;
}

.service-option-item.clickable {
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-option-item.clickable:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.service-option-icon {
    font-size: 20px;
    color: var(--accent-color);
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    flex-shrink: 0;
}

.service-option-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    flex: 1;
}

.service-option-info-icon {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.service-option-info-icon span {
    font-size: 16px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.service-option-item.clickable:hover .service-option-info-icon {
    color: var(--accent-color);
}

.service-option-divider {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 500;
    flex-shrink: 0;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    max-width: 550px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.modal-close:hover {
    background: var(--white);
    transform: rotate(90deg);
}

.modal-close span {
    font-size: 20px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.modal-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.modal-header-icon {
    font-size: 28px;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    flex-shrink: 0;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    padding-right: 2rem;
}

.modal-body {
    padding: 2rem;
}

.modal-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0 0 1.25rem 0;
}

.modal-text:last-child {
    margin-bottom: 0;
}

.hero-side {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.side-card {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--accent-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.side-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.side-icon {
    font-size: 20px;
    color: var(--accent-color);
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    flex-shrink: 0;
}

.side-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.side-text strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
}

.side-text span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3.5rem;
    letter-spacing: -0.02em;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-card.coming-soon {
    opacity: 0.7;
    background: var(--bg-light);
}

.service-card.coming-soon:hover {
    transform: translateY(-2px);
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.card-icon {
    font-size: 48px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.service-card:hover .card-icon {
    color: var(--accent-hover);
    transform: scale(1.05);
}

.card-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    text-align: center;
}

.card-description {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
    flex-grow: 1;
}

.card-description p {
    margin-bottom: 0.75rem;
    text-align: center;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-list li {
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.875rem;
    line-height: 1.5;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.card-link {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--accent-color);
    margin-top: auto;
    transition: color 0.2s ease;
}

.service-card:hover .card-link {
    color: var(--accent-hover);
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2.5rem 2rem;
    margin-top: 5rem;
    border-top: 1px solid var(--border-color);
}

.main-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.back-button:hover {
    color: var(--accent-color);
    background: rgba(59, 130, 246, 0.1);
}

.back-button span:first-child {
    font-size: 20px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.phone-brand-section {
    margin-bottom: 4rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

.brand-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.brand-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.brand-card.active {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
}

.brand-card.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.brand-card.coming-soon:hover {
    transform: none;
    border-color: var(--border-color);
}

.brand-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.brand-icon {
    font-size: 48px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.brand-image-carousel {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: transparent;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-image {
    min-width: 100%;
    width: 120px;
    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.brand-subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.brand-card.active .brand-subtitle {
    color: var(--accent-color);
}

.iphone-models-section {
    margin-top: 4rem;
}

.iphone-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 1200px) {
    .iphone-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.iphone-card {
    background: var(--white);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.iphone-card:hover {
    transform: scale(1.2);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
    z-index: 10;
    position: relative;
}

.iphone-image-wrapper {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.iphone-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.iphone-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.iphone-placeholder span {
    font-size: 48px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.iphone-name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .iphone-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .header-nav {
        padding: 0.875rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.875rem;
    }

    .header-hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem 1.5rem 2.5rem;
        align-items: start;
    }

    .hero-main {
        gap: 1.25rem;
    }

    .name-line-1 {
        font-size: 2.25rem;
    }

    .name-line-2 {
        font-size: 1.875rem;
    }

    .name-line-3 {
        font-size: 1.5rem;
    }

    .hero-highlights {
        gap: 0.75rem;
    }

    .highlight-item {
        font-size: 0.875rem;
    }

    .hero-service-options {
        margin-top: 1.25rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .service-option-item {
        max-width: 100%;
        width: 100%;
    }

    .service-option-text {
        text-align: center;
    }

    .service-option-divider {
        order: -1;
    }

    .modal-content {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .modal-header {
        padding: 0.75rem 1.5rem;
    }

    .modal-header-icon {
        font-size: 24px;
    }

    .modal-title {
        font-size: 1.25rem;
        padding-right: 2.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-text {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }

    .hero-side {
        padding-top: 0;
    }

    .side-card {
        padding: 1rem;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .brand-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .iphone-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.25rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.8125rem;
    }

    .header-hero {
        padding: 1.25rem 1rem 2rem;
        gap: 1.5rem;
    }

    .name-line-1 {
        font-size: 1.875rem;
    }

    .name-line-2 {
        font-size: 1.5rem;
    }

    .name-line-3 {
        font-size: 1.25rem;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .highlight-divider {
        display: none;
    }

    .side-card {
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .side-icon {
        font-size: 20px;
    }

    .card-icon-wrapper {
        width: 56px;
        height: 56px;
    }
    
    .card-icon {
        font-size: 40px;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .brand-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .iphone-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Reparationer Popup Styles */
.repairs-modal {
    max-width: 600px;
}

.repairs-subtitle {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.repairs-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.repair-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.repair-item:hover {
    background: #f1f5f9;
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.repair-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-color);
    flex-shrink: 0;
}

.repair-name {
    flex: 1;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.repair-price {
    font-size: 0.9375rem;
    color: var(--accent-color);
    font-weight: 600;
    white-space: nowrap;
}

.repair-item.out-of-stock {
    opacity: 0.7;
    background: #f8f9fa;
}

.repair-item.out-of-stock:hover {
    background: #f1f3f5;
    transform: none;
    border-color: var(--border-color);
}

.repair-item.out-of-stock .repair-checkbox {
    cursor: not-allowed;
    opacity: 0.5;
}

.out-of-stock-text {
    text-decoration: line-through;
    color: var(--text-light);
}

.out-of-stock-badge-modal {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: #e5e7eb;
    color: #6b7280;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-left: auto;
    white-space: nowrap;
}

.no-repairs-message {
    text-align: center;
    padding: 2rem 1rem;
}

.no-repairs-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid #fecaca;
}

/* Scrollbar styling för repairs-list */
.repairs-list::-webkit-scrollbar {
    width: 8px;
}

.repairs-list::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

.repairs-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.repairs-list::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}
