@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

:root {
    --primary-color: #2BD9B9;
    --primary-hover: #26BFA3;
    --text-dark: #1a1a1a;
    --text-gray: #6b7280;
    --bg-light: #f5f5f7;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    position: relative;
}

.loading-logo {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

.loading-spinner {
    --progress: 0%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) var(--progress), rgba(43, 217, 185, 0.12) 0);
    position: relative;
    margin: 20px auto 0;
    transition: background 0.2s ease;
}

.loading-spinner::before {
    content: '';
    position: absolute;
    inset: 8px;
    background: var(--bg-light);
    border-radius: 50%;
}

.loading-progress {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

.header {
    background-color: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(-20px);
    animation: slideDown 0.6s ease forwards;
    animation-delay: 0.3s;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo svg {
    transition: transform 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.1);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-text {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    transition: var(--transition);
    border-radius: 8px;
}

.btn-text:hover {
    background-color: rgba(43, 217, 185, 0.1);
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover span {
    background-color: var(--primary-color);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(-20px);
    transition: var(--transition);
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px;
    transition: var(--transition);
    border-radius: 8px;
}

.mobile-nav a:hover {
    background-color: rgba(43, 217, 185, 0.1);
    color: var(--primary-color);
}

.mobile-nav .btn-primary {
    text-align: center;
    margin-top: 8px;
}

.hero {
    padding: 80px 0 120px;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-content.content-ready {
    animation: riseIn 0.9s ease forwards;
}



@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(26px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-large {
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px;
}

.btn-dropdown {
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 500;
    padding: 16px 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-dropdown:hover {
    color: var(--primary-color);
    background-color: rgba(43, 217, 185, 0.1);
}

.btn-dropdown svg {
    transition: transform 0.3s ease;
}

.btn-dropdown:hover svg {
    transform: translateY(2px);
}

.hero-image {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.95);
}

.hero-image.images-ready {
    animation: riseIn 0.9s ease forwards, floatSoft 7s ease-in-out 0.9s infinite;
}

.dashboard-container {
    position: relative;
    width: 100%;
}

.desktop-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.mobile-image {
    display: none;
}

.hero-image .desktop-image,
.hero-image .mobile-image {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    filter: blur(6px);
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}

.hero-image.images-ready .desktop-image,
.hero-image.images-ready .mobile-image {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(40, 40, 40, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    cursor: pointer;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(24px) scale(0.98);
}

.floating-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(43, 217, 185, 0.3);
}

@keyframes floatSoft {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.meta-card {
    top: 12%;
    left: 6%;
    width: 180px;
    animation: floatSoft 4s ease-in-out infinite, fadeInCard 0.8s ease forwards;
    animation-delay: 0s, 1.2s;
}

.bitcoin-card {
    top: 18%;
    right: 4%;
    width: 300px;
    animation: floatSoft 5s ease-in-out infinite, fadeInCard 0.8s ease forwards;
    animation-delay: 0.5s, 1.4s;
}

.google-card {
    bottom: 18%;
    left: 4%;
    width: 260px;
    animation: floatSoft 4.5s ease-in-out infinite, fadeInCard 0.8s ease forwards;
    animation-delay: 1s, 1.6s;
}

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-image.hero-ready .meta-card {
    animation: riseIn 0.8s ease forwards, floatSoft 4.5s ease-in-out infinite;
    animation-delay: 0s, 0.9s;
}

.hero-image.hero-ready .bitcoin-card {
    animation: riseIn 0.8s ease forwards, floatSoft 5s ease-in-out infinite;
    animation-delay: 0.15s, 1.05s;
}

.hero-image.hero-ready .google-card {
    animation: riseIn 0.8s ease forwards, floatSoft 4.8s ease-in-out infinite;
    animation-delay: 0.3s, 1.2s;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 600;
}

.card-header svg {
    flex-shrink: 0;
}

.card-header img {
    flex-shrink: 0;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.card-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.card-profit {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1ecab0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.bitcoin-profit,
.google-profit {
    font-size: 44px;
}

.card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-details .price {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.card-details .variation {
    font-size: 12px;
    font-weight: 600;
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.info-item .label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.info-item .value {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.positive {
    color: var(--primary-color);
}

.negative {
    color: #ff4444;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    .desktop-nav,
    .desktop-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header {
        padding: 12px 0;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-dropdown {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .desktop-image {
        display: none;
    }

    .mobile-image {
        display: block;
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
    }

    .floating-cards {
        display: block;
    }

    .floating-card {
        transform: translateY(12px) scale(0.96);
    }

    .meta-card {
        top: 6%;
        left: 4%;
        width: 130px;
    }

    .bitcoin-card {
        top: 14%;
        right: 2%;
        width: 200px;
    }

    .google-card {
        bottom: 6%;
        left: 2%;
        width: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 15px;
    }

    .btn-dropdown {
        padding: 14px 20px;
        font-size: 15px;
    }

    .logo {
        font-size: 18px;
    }

    .logo svg {
        width: 20px;
        height: 20px;
    }
}

.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-out {
    animation: fadeOut 0.3s ease-out;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

@media (prefers-reduced-motion: reduce) {

    body:not(.motion-enabled) *,
    body:not(.motion-enabled) *::before,
    body:not(.motion-enabled) *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* --- Steps Section --- */
.steps-section {
    padding: 100px 0;
    background-color: var(--white);
}

.steps-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title span {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 28px;
    bottom: 40px;
    width: 2px;
    background-color: #e5e7eb;
    z-index: 0;
}

.steps-progress {
    position: absolute;
    top: 40px;
    left: 28px;
    width: 2px;
    height: 0;
    background-color: var(--primary-color);
    z-index: 1;
    transition: height 0.5s ease;
}

.step-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.step-item.active {
    opacity: 1;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background-color: var(--text-dark);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background-color: var(--text-dark);
    box-shadow: 0 0 0 4px rgba(43, 217, 185, 0.2);
}

.step-content {
    padding-top: 10px;
}

.step-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.step-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.step-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 600px;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.faq-cta {
    margin-top: 32px;
    margin-bottom: 60px;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--primary-color);
    transform: translate(-50%, -50%);
}

.faq-toggle::before {
    width: 12px;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 12px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content {
    padding: 0 24px 24px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background-color: #0f1114;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-cta {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.footer-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    background: rgba(255, 255, 255, 0.03);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-text {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 600px;
}

.cta-text p {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.cta-text svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-cta {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-brand p {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 1.6;
    max-width: 250px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    margin-bottom: 40px;
}

.disclaimer-text {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #9ca3af;
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    color: #9ca3af;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-color);
}

/* Media Queries Updates */
@media (max-width: 1024px) {
    .section-title {
        font-size: 40px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    .steps-container::before,
    .steps-progress {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-item {
        gap: 24px;
    }
    
    .step-title {
        font-size: 24px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Assets Section */
.assets-section {
    padding: 80px 0;
    background: #f9fafb;
    overflow: hidden;
}

.assets-marquee {
    width: 100%;
    margin-top: 40px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.assets-marquee::before,
.assets-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.assets-marquee::before {
    left: 0;
    background: linear-gradient(to right, #f9fafb, transparent);
}

.assets-marquee::after {
    right: 0;
    background: linear-gradient(to left, #f9fafb, transparent);
}

.assets-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 60s linear infinite;
}

.asset-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.asset-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.asset-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f2f5;
    overflow: hidden;
}

.asset-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.asset-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Fast Deposit Section */
.fast-deposit-section {
    padding: 100px 0 60px;
    background: #ffffff;
    overflow: hidden;
}

.fast-deposit-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    text-align: center;
}

.deposit-header {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.deposit-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.deposit-image-container {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    z-index: 1;
}

.deposit-image {
    width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 8px solid #1a1d21;
}

.floating-card {
    position: absolute;
    background: #1a1d21;
    padding: 16px 24px;
    border-radius: 16px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.1);
}

.balance-card {
    top: 20%;
    right: -60px;
    text-align: left;
}

.card-label {
    font-size: 12px;
    color: #9ca3af;
}

.card-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .balance-card {
        right: -20px;
        top: 15%;
    }
    
    .deposit-image-container {
        max-width: 280px;
    }
}

/* Support Section */
.support-section {
    position: relative;
    padding: 120px 0;
    background-image: url('https://framerusercontent.com/images/96pROGd0FnG6oFx7gsMCioblr0k.webp?width=1977&height=1060');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.support-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.support-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    gap: 32px;
}

.support-badge {
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(4px);
    display: inline-block;
}

.support-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.support-title .highlight {
    color: var(--primary-color);
}

.support-subtitle {
    font-size: 20px;
    color: #d1d5db;
    max-width: 600px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .support-section {
        padding: 80px 0;
    }

    .support-title {
        font-size: 36px;
    }
    
    .support-subtitle {
        font-size: 18px;
    }
}