/* Global Styles */
:root {
    --primary-color: #1d88ff; /* Main brand color */
    --primary-dark: #0a6fd1;
    --secondary-color: #424549;
    --accent-color: #1d88ff;
    --dark-color: #041629; /* Main background color */
    --light-color: #ffffff;
    --light-gray: #0a2442; /* Lighter blue */
    --medium-gray: #082038; /* Medium blue */
    --dark-gray: #05172a; /* Darker blue */
    --font-family: 'Poppins', sans-serif;
    
/* Language Switcher Styles */
.language-switcher {
    position: relative;
    margin-right: 15px;
}

.language-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.language-button img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background-color: var(--dark-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: 140px;
    overflow: hidden;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.language-options.show {
    display: block !important;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.language-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-option img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    border-radius: 3px;
}

.language-option span {
    color: var(--light-color);
    font-size: 14px;
}
    
/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(29, 136, 255, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(29, 136, 255, 0.6);
}
    --body-bg: #041629; /* Dark blue background */
    --text-color: #ffffff; /* White text for dark background */
    --border-radius: 10px;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --box-shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.5);
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--body-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
    border: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #0b6ecc;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Navigation Join Now button specific styling */
.navbar-nav .btn.btn-primary, .desktop-nav .btn.btn-primary {
    padding: 0.3rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    height: 40px; /* Angepasst an die Höhe der Navigation */
    margin: 0; /* Kein vertikaler Versatz, genau auf Linie mit Navigation */
    line-height: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.btn-outline-light {
    color: var(--light-color);
    border-color: var(--light-color);
}

.btn-outline-light:hover, .btn-outline-light:focus {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: var(--dark-color);
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--light-color);
}

.navbar-nav .nav-link {
    color: var(--light-color);
    font-weight: 500;
    margin: 0 0.25rem;
    position: relative;
    display: inline-block;
    text-align: center;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    width: 70%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Custom Mobile Menu */
.custom-mobile-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(4, 22, 41, 0.98);
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.custom-mobile-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.custom-mobile-menu .navbar-nav {
    flex-direction: column;
    padding: 1rem 0;
}

.custom-mobile-menu .nav-item {
    margin-bottom: 0.5rem;
    text-align: center;
}

.custom-mobile-menu .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
}

/* Desktop Navigation */
.desktop-nav {
    justify-content: center;
    align-items: center;
}

/* Mobile Navigation Improvements */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--dark-color);
        border-radius: 10px;
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: opacity 0.3s ease, transform 0.3s ease;
        opacity: 1;
        transform: translateY(0);
        position: fixed !important;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1050;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .navbar-collapse > div {
        width: auto !important;
        min-width: auto !important;
    }
    
    .navbar-collapse.collapsing {
        opacity: 0;
        transform: translateY(-10px);
    }
    
    .navbar-collapse.show {
        opacity: 1;
        transform: translateY(0);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin: 0.7rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.8rem 1rem;
        display: inline-block;
        width: 100%;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-weight: 600;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(29, 136, 255, 0.1);
        transform: translateX(3px);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .btn {
        margin-top: 0.5rem;
        width: 100%;
        padding: 0.8rem 1rem;
        font-weight: 600;
        text-transform: uppercase;
        height: auto;
    }
    
    /* Improved mobile navbar toggler */
    .navbar-toggler.custom-toggler {
        padding: 0.5rem;
        border-radius: 6px;
        transition: all 0.3s ease;
        background-color: rgba(29, 136, 255, 0.1);
        position: relative;
        z-index: 1060; /* Higher z-index to ensure it's always clickable */
        cursor: pointer;
    }
    
    .navbar-toggler.custom-toggler:hover {
        background-color: rgba(29, 136, 255, 0.2);
        transform: scale(1.05);
    }
    
    .navbar-toggler.custom-toggler:active {
        transform: scale(0.95);
    }
    
    .navbar-toggler-icon {
        width: 1.4em;
        height: 1.4em;
        transition: transform 0.3s ease;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        transform: rotate(90deg);
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, #062b4f 100%);
    color: var(--light-color);
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary:hover {
    background-color: #0b6ecc;
}

.hero-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background-color: transparent;
}

.hero-wave svg path {
    fill: var(--dark-gray) !important;
}

.hero-graphic {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon {
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
    position: relative;
}

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

.discord-stats {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-top: 2rem;
}

.discord-stats i {
    color: var(--accent-color);
}

/* Features Section */
.feature-card {
    background-color: rgba(10, 36, 66, 0.8);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    color: var(--light-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    background-color: rgba(13, 46, 83, 0.9);
}

.feature-icon {
    background-color: rgba(29, 136, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    background-color: var(--dark-gray);
    color: var(--light-color);
}

.stat-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    height: 100%;
}

.stat-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-number.open-label {
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 1px;
}

.stat-title {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Pricing Section */
.pricing-card {
    background-color: rgba(5, 23, 42, 0.8);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--primary-color);
    color: var(--light-color);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    background-color: rgba(8, 32, 56, 0.9);
}

.pricing-card.featured {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: scale(1.05);
    z-index: 1;
    border: none;
    box-shadow: 0 10px 30px rgba(29, 136, 255, 0.4);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 10px 10px;
    font-weight: 600;
    font-size: 0.8rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-card.featured .pricing-header h3,
.pricing-card.featured .price {
    color: var(--light-color);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price .period {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.pricing-save {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--light-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card.featured .pricing-features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.pricing-features .text-muted i {
    color: #999;
}

.pricing-card.featured .pricing-features i {
    color: var(--light-color);
}

.pricing-card.featured .btn-outline-primary {
    color: var(--light-color);
    border-color: var(--light-color);
}

.pricing-card.featured .btn-outline-primary:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-gray);
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    min-height: 400px; /* Increased from 300px to give more space for content */
}

.testimonial-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    transform: translateX(50px);
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-content {
    background-color: rgba(8, 32, 56, 0.85);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    position: relative;
    border: 1px solid rgba(29, 136, 255, 0.3);
    max-height: 320px;
    overflow-y: auto;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial-avatar i {
    font-size: 2rem;
    color: var(--dark-gray);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-meta h5 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.testimonial-meta p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: normal;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-control {
    background-color: var(--light-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-control:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* FAQ Section */
.accordion-item {
    border: 1px solid rgba(29, 136, 255, 0.3);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: rgba(8, 32, 56, 0.7);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    background-color: rgba(10, 36, 66, 0.9);
    color: var(--light-color);
    box-shadow: none;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    color: var(--light-color);
    background-color: rgba(29, 136, 255, 0.2);
}

.accordion-button:focus {
    border-color: rgba(29, 136, 255, 0.3);
    box-shadow: none;
}

.accordion-button::after {
    background-size: 1rem;
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.5rem;
    background-color: rgba(5, 23, 42, 0.7);
    color: var(--light-color);
}

/* CTA Section */
.cta-section {
    background-color: var(--light-gray);
    color: var(--light-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-buttons {
    margin-top: 2rem;
}

/* Footer */
.footer-section {
    background-color: var(--dark-gray);
    color: var(--light-color);
    padding: 80px 0 30px;
}

.footer-section h5 {
    color: var(--light-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section p {
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    margin-right: 0.5rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.footer-bottom-links li {
    margin-left: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--box-shadow);
    z-index: 99;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: var(--light-color);
    transform: translateY(-5px);
}

/* Blogs Section */
.showcase-section {
    background-color: var(--dark-gray);
    overflow: hidden;
}

.showcase-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    cursor: grab;
}

.showcase-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: calc(250px * 16); /* Width of images * number of images */
}

.showcase-track:hover {
    animation-play-state: paused;
}

.showcase-item {
    flex: 0 0 250px;
    width: 250px;
    height: 250px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item:hover .showcase-image {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(29, 136, 255, 0.3); /* Blue glow with shadow */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 8)); /* Half the width to loop seamlessly */
    }
}

/* Media Queries */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-section {
        height: auto;
        padding: 150px 0 100px;
        background-color: var(--dark-color);
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    /* Add extra space at the bottom on mobile to prevent fixed navbar overlap */
    body {
        padding-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .footer-bottom-links li {
        margin-left: 0;
        margin-right: 1.5rem;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(29, 136, 255, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(29, 136, 255, 0.6);
}
