/* CSS Variables - Cosmic Theme (Purple Palette) */
:root {
    /* Adjusted Purple Palette based on logo */
    --purple-900: #1a102a;
    --purple-700: #6f2cff;
    --purple-500: #9a6bff;
    --purple-100: #f2ecff;
    --purple-050: #fbf8ff;

    /* Semantic Mappings */
    --primary-color: var(--purple-700);
    --secondary-color: var(--purple-500);
    --bg-deep: var(--purple-900);
    --glass-bg: rgba(26, 16, 42, 0.6);
    --glass-border: rgba(154, 107, 255, 0.25);

    --text-main: var(--purple-100);
    --text-soft: var(--purple-050);
    --title: var(--purple-700);
    --subtitle: var(--purple-500);
    /* Made lighter per user request */
    --accent-glow: 0 0 20px rgba(157, 0, 255, 0.5);
}

/* Base Setup */
body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 15% 50%, rgba(67, 97, 238, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(157, 0, 255, 0.08), transparent 25%);
    background-attachment: fixed;
    /* User Requirement: Max 12px for body text */
    font-size: 12px;
}

/* Global Scrollbar Styling (Matches Modals) */
::-webkit-scrollbar {
    width: 8px;
    /* Slightly wider for main page */
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--purple-500);
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--purple-700);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--purple-500) var(--bg-deep);
}

/* Text Overrides - No Black Text */
p,
span,
li,
small,
.text-muted,
.portfolio-desc,
.card-text {
    color: var(--text-main) !important;
    font-size: 12px !important;
    line-height: 1.6;
}

h1,
h2,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.modal-title {
    color: var(--title) !important;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* Card Titles / List Titles - Max 22px */
h3,
.h3,
.portfolio-list-item h2,
.portfolio-title,
.card-title {
    font-size: 22px !important;
    font-weight: 700;
}

/* Subtitles - Max 19px */
h4,
.h4,
.lead,
.subtitle,
.project-subtitle,
.portfolio-subtitle,
.portfolio-list-item h4 {
    font-size: 19px !important;
    font-weight: 400;
    color: var(--subtitle) !important;
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    font-size: 2rem !important;
    /* Increased from default */
    font-weight: 800;
}

.navbar-brand img {
    max-height: 50px;
    /* If image exists, ensure it can be larger */
    transform: scale(1.5);
    /* Force visual increase */
    transform-origin: left center;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(45deg, var(--purple-700), var(--purple-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glow-hover:hover {
    box-shadow: 0 0 25px rgba(157, 0, 255, 0.4);
    border-color: rgba(157, 0, 255, 0.5);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(5, 1, 12, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: white !important;
}

.nav-link:hover::after {
    width: 80%;
}

/* Global Button Override - Purple Gradient */
.btn-primary {
    background: linear-gradient(135deg, var(--purple-700), var(--purple-500)) !important;
    border: none !important;
    color: white !important;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 700;
    /* Bold as requested */
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(111, 44, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--purple-500), #b18cff) !important;
    /* Lighter purple on hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(154, 107, 255, 0.5);
    color: white !important;
}

.btn-primary:active {
    transform: translateY(0);
}

/* Hero */
.hero-section {
    height: 100vh;
    background: url('../assets/hero-bg.png') center/cover no-repeat;
    /* User Asset */
    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(5, 1, 10, 0.5) 0%,
            rgba(5, 1, 10, 0.8) 60%,
            var(--bg-deep) 100%);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
    padding-top: 5vh;
    /* Slight push for the whole content */
}

/* Push CTA Buttons down to separate from Logo */
.hero-content .d-flex {
    margin-top: 15rem;
    /* Large gap for maximum separation */
    transform: translateY(40px);
    /* Additional visual push */
    padding-bottom: 2rem;
    /* Ensure space from bottom edge */
}

/* Services */
.service-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(157, 0, 255, 0.2), transparent 40%);
    opacity: 0;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(157, 0, 255, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(157, 0, 255, 0.1);
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(157, 0, 255, 0.2);
}

/* Stacks - Extended Spacing */
#stacks {
    padding-top: 140px;
    padding-bottom: 140px;
}

.stack-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}

.stack-card i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    transition: 0.3s;
    color: var(--text-muted);
}

.stack-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.2);
}

.stack-card:hover i {
    color: white;
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px var(--primary-color));
}

/* Projects Horizontal Layout */
.project-card-horizontal {
    background: rgba(10, 5, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 2rem;
}

.project-img-wrapper {
    height: 320px;
    /* Standard fixed height for desktop cards */
    width: 100%;
    overflow: hidden;
    position: relative;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.project-card-horizontal:hover .project-img-wrapper img {
    transform: scale(1.05);
    /* Subtle zoom on hover */
}

/* FEATURED PRODUCTS (NEW) */
.product-std-img {
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: block;
}

.product-row:hover .product-std-img {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 60px rgba(157, 0, 255, 0.15);
    border-color: rgba(157, 0, 255, 0.3);
}

.product-row h3 {
    letter-spacing: -1px;
}

/* Unused legacy classes removed or kept as fallback */
.featured-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-main {
    height: 500px;
}

.featured-sub {
    height: 500px;
}

.featured-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.featured-card:hover .featured-bg {
    transform: scale(1.1);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.featured-card:hover .featured-content {
    transform: translateY(0);
}

/* NEWSLETTER PARALLAX (NEW) */
.footer-cta-parallax {
    background-image: url('../assets/hero-bg.png');
    /* Reusing Hero BG for coherence */
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    min-height: 400px;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 1, 10, 0.85);
    /* Dark overlay */
    z-index: 1;
}

/* FOOTER */
footer a.hover-text-white:hover {
    color: white !important;
    transition: 0.3s;
}

footer .hover-opacity-100:hover {
    opacity: 1 !important;
    transition: 0.3s;
}

/* Mobile Adjustments */
@media (max-width: 768px) {

    .featured-main,
    .featured-sub {
        height: 400px;
    }

    .project-img-wrapper {
        min-height: 300px;
        /* Taller on mobile for better view */
        height: 300px;
    }
}

/* Projects */
.project-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(157, 0, 255, 0.4);
}

.project-mockup {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
    /* Simulated screens overlay */
}

/* Project Placeholders/Mockups */
.mockup-atlas {
    background: linear-gradient(135deg, #1c1e26, #282c34);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-nebula {
    background: linear-gradient(135deg, #240b36, #c31432);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-dock {
    background: linear-gradient(135deg, #000428, #004e92);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-aurora {
    background: linear-gradient(135deg, #1A2980, #26D0CE);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-overlay-icon {
    opacity: 0.5;
    transition: 0.4s;
}

.project-card:hover .project-overlay-icon {
    opacity: 1;
    transform: scale(1.1);
}


/* Portfolio List Interactions */
.cursor-pointer {
    cursor: pointer;
}

.hover-scale-sm {
    transition: transform 0.3s ease;
}

.hover-scale-sm:hover {
    transform: translateY(-5px);
}

.portfolio-hover-scale {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-list-item:hover .portfolio-hover-scale {
    transform: scale(1.05);
}

.portfolio-list-item:hover h2 {
    color: var(--purple-500) !important;
    transition: 0.3s;
}

/* === Vertical Project Card (Variant) === */
.project-card-vertical {
    background: rgba(10, 5, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.project-card-vertical:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 0, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.project-card-vertical h3 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.project-card-vertical .project-subtitle {
    margin-bottom: 1.5rem;
    display: block;
}

.img-wrapper-vertical {
    width: 100%;
    max-width: 500px;
    /* User requirement */
    margin: 0 auto 1.5rem auto;
    /* Center image */
    overflow: hidden;
    border-radius: 16px;
}

.img-wrapper-vertical img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card-vertical:hover .img-wrapper-vertical img {
    transform: scale(1.03);
}

.project-card-vertical .project-content {
    padding: 0;
    /* Reset since padding is on card */
}

/* Modals */
.modal-content {
    background: rgba(10, 5, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.modal-header,
.modal-footer {
    border-bottom: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border);
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.carousel-item img {
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

/* Form */
.form-floating .form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: white;
}

.form-floating .form-control:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.2);
}

.form-floating label {
    color: var(--text-muted);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-scale {
    animation: fadeInScale 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* === PORTFOLIO / CASES (Brute Force Standard) === */

/* GRID */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

@media (max-width: 991.98px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* === STANDARD MODALS (Project & Tech) === */
.modal-project {
    background: var(--bg-dark);
    border: 1px solid rgba(154, 107, 255, .25);
    border-radius: 18px;
    color: var(--text-main);
}

.modal-project-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 18px;
    padding: 18px;
}

.modal-video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(154, 107, 255, .25);
    background: #000;
}

.modal-video iframe,
.modal-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.modal-title {
    margin: 0 0 8px 0;
    font-weight: 700;
}

.modal-subtitle {
    margin: 0 0 12px 0;
    font-weight: 500;
    opacity: 0.9;
}

.modal-text,
.modal-desc {
    color: var(--text-main);
    opacity: .95;
    line-height: 1.6;
    font-size: 0.95rem;
}

.modal-desc {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(154, 107, 255, .2);
}

.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    color: var(--text-main);
    opacity: .95;
    margin-bottom: 8px;
    padding-left: 1.5rem;
    position: relative;
}

.tech-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--purple-500);
}

@media (max-width: 991.98px) {
    .modal-project-body {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

.portfolio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 0, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* TITLES / TEXTS */
.portfolio-title {
    margin: 0 0 12px 0;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-white);
}

.portfolio-subtitle {
    margin: 12px 0 6px 0;
    opacity: .85;
    font-weight: 500;
    color: var(--primary-color);
}

.portfolio-desc {
    margin: 0 0 12px 0;
    line-height: 1.45;
    opacity: .92;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-muted);
}

.portfolio-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    color: var(--text-white);
    transition: 0.3s;
}

.portfolio-more:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* FORÇA 500x500 VISUAL */
.portfolio-media {
    width: 100%;
    /* Max width handled by grid, but internal constraints apply */
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    background: #000;
}

.portfolio-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* corta sem distorcer */
    object-position: center;
    transition: transform 0.6s ease;
}

/* === TEAM SECTION === */
.team-card {
    background: rgba(26, 16, 42, 0.4);
    border: 1px solid rgba(154, 107, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    height: 100%;
    /* Ensures grid row equality */
    min-height: 420px;
    /* Reduced to compact size */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Pushes button to bottom */
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple-500);
    box-shadow: 0 10px 30px rgba(111, 44, 255, 0.1);
}

.team-img-wrapper {
    width: 180px;
    /* Reduced from 230px per request to compact card */
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(154, 107, 255, 0.3);
    padding: 0;
    margin: 0 auto 1.5rem auto;
    /* Clean spacing */
    background: rgba(255, 255, 255, 0.05);
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 17px;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-social:hover {
    background: var(--purple-700) !important;
    transform: scale(1.1);
}

/* === CONTACT FORM & LAST SECTION VISIBILITY FIXES === */
#contact .form-floating label {
    color: var(--purple-100) !important;
    opacity: 0.9 !important;
    /* Force visibility */
}

#contact .form-floating .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-white) !important;
}

#contact .form-floating .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.3);
    color: var(--text-white) !important;
}

#contact .form-floating .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* === NEWSLETTER / PARALLAX ULTIMATE CONTRAST === */

/* Ensure the overlay darkens the background sufficiently */
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 1, 10, 0.8), rgba(5, 1, 10, 0.95));
    /* Very dark overlay */
    z-index: 1;
}

.footer-cta-parallax .container {
    z-index: 2;
    /* Ensure content sits above overlay */
}

.footer-cta-parallax h2 {
    color: #ffffff !important;
    /* Pure White */
    opacity: 1 !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 1);
    /* Max shadow */
}

.footer-cta-parallax p,
.footer-cta-parallax small,
.footer-cta-parallax .text-muted,
.footer-cta-parallax .lead {
    color: #e0e0e0 !important;
    /* Light Gray for subtext */
    opacity: 1 !important;
    font-weight: 500;
}

/* Newsletter Input - Pure White as requested for clarity */
.footer-cta-parallax input.form-control {
    background: #ffffff !important;
    /* Pure White */
    border: 2px solid white !important;
    color: #000000 !important;
    /* Pure Black text */
    font-weight: 700;
}

.footer-cta-parallax input.form-control::placeholder {
    color: #666666 !important;
    /* Standard Gray placeholder */
    font-weight: 500;
}

.footer-cta-parallax input.form-control:focus {
    background: #ffffff !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    /* White glow */
}

.footer-cta-parallax .btn-primary {
    background-color: var(--purple-600);
    border-color: var(--purple-600);
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    /* Lift button */
}

.footer-cta-parallax .btn-primary:hover {
    background-color: var(--purple-500);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 44, 255, 0.6);
}

/* === CUSTOM SCROLLBAR FOR MODALS === */
.modal-desc::-webkit-scrollbar {
    width: 6px;
}

.modal-desc::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal-desc::-webkit-scrollbar-thumb {
    background: #9a6bff;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.modal-desc::-webkit-scrollbar-thumb:hover {
    background: #b18cff;
}

/* For Firefox */
.modal-desc {
    scrollbar-width: thin;
    scrollbar-color: #9a6bff rgba(255, 255, 255, 0.05);
}