html {
    overflow-x: hidden;
}

:root {
    --yellow: #fbbf24;
    --white: #fff;
    --theme-black: #1F1401;
    --light-7: #757575;
}

/* Banner Responsive Fixes */
@media (max-width: 640px) {
    .banner-slider {
        height: auto;
    }

    .banner-slider h1 {
        word-break: break-word;
        hyphens: auto;
    }

    .banner-slider p {
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        height: auto;
    }
}

/* Banner Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}

.animation-delay-600 {
    animation-delay: 0.6s;
}

.slick-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--yellow);
}

.slick-dots li.slick-active button:before {
    color: var(--yellow);
}

/* Privacy Policy Page Specific Styles */
.privacy-hero {
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(248, 183, 25, 0.1),
            transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.legal-badge {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(248, 183, 25, 0.3);
    background: rgba(248, 183, 25, 0.1);
}

.accordion {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin: 2rem 0;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(248, 183, 25, 0.2);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 183, 25, 0.15);
    border-color: rgba(248, 183, 25, 0.4);
}

.accordion-item.active {
    border-color: #F8B719 !important;
    background: rgba(248, 183, 25, 0.1) !important;
    box-shadow: 0 8px 30px rgba(248, 183, 25, 0.2);
}

.accordion-button {
    position: relative;
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-button:hover {
    background: rgba(248, 183, 25, 0.05);
    color: #F8B719;
}

.accordion-button.active {
    background: rgba(248, 183, 25, 0.1);
    color: #F8B719;
}

.accordion-button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #F8B719, #FF522F);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accordion-button.active::before {
    opacity: 1;
}

.accordion-button::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    color: #F8B719;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #F8B719;
    border-radius: 50%;
    background: rgba(248, 183, 25, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.accordion-button:hover::after {
    transform: scale(1.1);
    background: rgba(248, 183, 25, 0.2);
    box-shadow: 0 0 15px rgba(248, 183, 25, 0.3);
}

.accordion-button.active::after {
    content: "−";
    transform: rotate(180deg);
    background: #F8B719;
    color: #1a1a1a;
    border-color: #F8B719;
}

.accordion-content {
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(248, 183, 25, 0.1);
}

.accordion-content .p-6 {
    line-height: 1.6;
}

.accordion-content h3,
.accordion-content h4,
.accordion-content h5,
.accordion-content h6 {
    color: #F8B719;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.accordion-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.accordion-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
}

.accordion-content h5,
.accordion-content h6 {
    font-size: 1.1rem;
    font-weight: 600;
}

.accordion-content p {
    margin-bottom: 1rem;
    color: #e5e5e5;
}

.accordion-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.accordion-content ul li {
    margin-bottom: 0.5rem;
    color: #e5e5e5;
    position: relative;
}

.accordion-content ul li::before {
    content: "•";
    color: #F8B719;
    font-size: 1.2rem;
    position: absolute;
    left: -1.2rem;
}

.accordion-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.accordion-content table td {
    border: 1px solid rgba(248, 183, 25, 0.3);
    padding: 0.75rem;
    color: #e5e5e5;
}

.accordion-content table tr:first-child td {
    background: rgba(248, 183, 25, 0.1);
    font-weight: 600;
    color: #F8B719;
}

@media (max-width: 768px) {
    .accordion {
        padding: 1rem;
        margin: 1rem 0;
    }

    .accordion-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .accordion-button::after {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .accordion-content .p-6 {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .accordion-button::after {
        right: 16px;
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
}

.accordion-content {
    display: none;
}

.accordion-button.active+div {
    display: block;
}

.ecosystem-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.ecosystem-item {
    position: relative;
    padding: 20px 36px;
}

.ecosystem-line {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(to right, #fbbf24, #10b981, #0ea5e9);
    z-index: -1;
}

.ecosystem-item:first-child .ecosystem-line {
    left: 50%;
}

.ecosystem-item:last-child .ecosystem-line {
    right: 50%;
}

.partner-card {
    border: 1px solid #0000001F;
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.partner-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.partner-logo {
    height: 50px;
    object-fit: contain;
}

.testimonials-slider img {
    border-radius: 8px;
    max-width: 100%;
}

.container {
    max-width: 1470px !important;
    margin-inline: auto;
    padding-inline: 15px;
}

body {
    font-family: "Inter", sans-serif;
}

/*--------Header---------*/
.header {

    &.scrolled,
    &:not(.home-header) {
        position: fixed;
        top: 0;
        z-index: 9999;
        background-color: var(--white);
        border-bottom: 1px solid #0000001F;

        a {
            color: var(--theme-black);
            border-color: var(--theme-black);
        }
    }

    &:not(.home-header):not(.scrolled) {
        position: relative;
    }
}

.slick-slider-dots {
    position: relative;

    .slick-dots {
        position: static;

        li {
            height: auto;
            width: auto;
            margin: 0 16px;

            button {
                width: 16px;
                height: 16px;
                padding: 0;
                background: #F8B718;
                border-radius: 50%;
                opacity: .5;

                &::before {
                    display: none;
                }
            }

            &.slick-active {
                button {
                    width: 32px;
                    height: 32px;
                    opacity: 1;
                }
            }
        }
    }
}

.partner-slider {
    .slick-list {
        padding-left: 0 !important;
    }

    .slick-slide {
        margin: 0 12px;
        height: auto;
    }

    .slick-track {
        display: flex;
    }
}

.slider-logos {
    .slick-slide {
        margin: 0 12px !important;
    }
}

.banner-slider {
    &.slick-initialized .slick-slide {
        display: flex !important;
    }
}

.container-2 {
    margin-inline: auto;
    max-width: 1920px;
}

.faq-privacy {
    .accordion-button {
        padding: 10px 20px;
        position: relative;

        &.active::after {
            background: #000;
            height: 2px;
            top: 18px;
        }

        &:after {
            position: absolute;
            right: 10px;
            top: 5px;
            height: 26px;
            width: 26px;
            background: url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M36 18C36 18.3978 35.842 18.7794 35.5607 19.0607C35.2794 19.342 34.8978 19.5 34.5 19.5H19.5V34.5C19.5 34.8978 19.342 35.2794 19.0607 35.5607C18.7794 35.842 18.3978 36 18 36C17.6022 36 17.2206 35.842 16.9393 35.5607C16.658 35.2794 16.5 34.8978 16.5 34.5V19.5H1.5C1.10218 19.5 0.720645 19.342 0.43934 19.0607C0.158036 18.7794 0 18.3978 0 18C0 17.6022 0.158036 17.2206 0.43934 16.9393C0.720645 16.658 1.10218 16.5 1.5 16.5H16.5V1.5C16.5 1.10218 16.658 0.720645 16.9393 0.43934C17.2206 0.158036 17.6022 0 18 0C18.3978 0 18.7794 0.158036 19.0607 0.43934C19.342 0.720645 19.5 1.10218 19.5 1.5V16.5H34.5C34.8978 16.5 35.2794 16.658 35.5607 16.9393C35.842 17.2206 36 17.6022 36 18Z" fill="%23000"/></svg>');
            background-size: 100% 100%;
        }
    }

    .accordion-item {
        background-color: #e5e5e5;
    }

    .accordion-content {
        width: 100%;
        max-width: 100% !important;
        background-color: #fff;
        border: 1px solid #e5e5e5;
        padding: 15px;

        ul,
        ol {
            padding-left: 15px;
        }

        h4 {
            font-weight: bold;
            margin-bottom: 10px;
        }

        h4 {
            font-weight: bold;
            margin-bottom: 10px;
        }

        h5 {
            font-weight: bold;
            margin-bottom: 10px;
        }

        h6 {
            font-weight: bold;
            margin-bottom: 10px;
        }

        p {
            margin-bottom: 10px;
        }
    }
}

@media screen and (min-width: 768px) {
    .border-gradient-b {
        border-bottom: 1px solid transparent;
        border-image-slice: 1;
        border-image-source: linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, #000000 48.08%, rgba(0, 0, 0, 1) 100%);
    }

    .border-gradient-b-solid {
        border-bottom: 1px solid #000;
    }

    .border-gradient-b-left {
        border-bottom: 1px solid transparent;
        border-image-slice: 1;
        border-image-source: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, #000000 47.12%, rgba(0, 0, 0, 0.08) 100%);
    }

    .border-gradient-r,
    .border-gradient-r-bottom {
        position: relative;
        border-right: 0;

        &:after {
            content: "";
            height: 100%;
            right: 0;
            top: 0;
            position: absolute;
            width: 0;
            border-image-slice: 1;
            border-right: 1px solid transparent;
            border-image-source: linear-gradient(160deg, rgba(0, 0, 0, 0.08) 0%, #000000 48.08%, rgba(0, 0, 0, .8) 100%);
        }
    }

    .border-gradient-r-bottom {
        &::after {
            border-image-source: linear-gradient(80deg, rgba(0, 0, 0, 0.08) 0%, #000000 48.08%, rgba(0, 0, 0, .8) 100%);
        }
    }
}

@media screen and (max-width: 767px) {
    .borders-div {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, #000 48.08%, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0.08) 0%);

        >div {
            background-color: #fff;
            border: 0;

            &:not(:last-child),
            &:not(:nth-last-child(-1)) {
                margin-bottom: 1px;
            }

            &:nth-child(odd) {
                margin-right: 1px;
            }
        }
    }

    .accordion-button,
    .accordion-content {
        font-size: 16px !important;
    }

    .accordion-button::after {
        height: 20px;
        width: 20px;
    }

    .main-nav {
        width: 100%;
        background: #fff;
        z-index: 9;

        a {
            display: block;
            margin: 0 !important;
            margin-bottom: 10px !important;
        }

        &.active {
            padding-top: 20px;
            display: block !important;
        }
    }

    .svg-image {
        overflow: auto;
    }
}


@media screen and (min-width: 768px) and (max-width: 1900px) {
    html {
        font-size: calc(8px + (16 - 8)*((100vw - 768px)/(1900 - 768))) !important;
    }
}