 :root {
            --primary: #b71c1c;
            --primary-dark: #2980b9;
            --secondary: brown;
            --dark: #fff;
            --darker: #bdbdbd;
            --light: #ecf0f1;
            --accent: #e74c3c;
            --gray: #95a5a6;
        }
         ::-webkit-scrollbar {
            display: none;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Space Grotesk', sans-serif;
        }

        body {
            background: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            zoom: 0.88;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            text-decoration: none;
            display: inline-block;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
            z-index: -1;
        }

        .btn-primary:hover::after {
            left: 100%;
        }

        /* Hero Section with Particle Effect */
        .hero {
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
            padding: 8rem 5% 4rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: var(--primary);
            filter: blur(150px);
            opacity: 0.15;
            animation: float 10s ease-in-out infinite;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
        }

        

        .hero {
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-text {
            z-index: 2;
        }

        .hero-text h1 {
            font-size: 4rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: #111;
            margin-bottom: 2rem;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            border-left: 2px solid var(--primary);
            padding-left: 1rem;
        }

        .stat-item h4 {
            font-size: 2rem;
            color: var(--primary);
        }

        /* Features Section with Card Hover Effects */
        .features {
            padding: 8rem 5%;
            background: var(--darker);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .feature-card {
            padding: 2rem;
            border-radius: 12px;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent);
            transform: translateX(-100%);
            transition: 0.5s;
        }

        .feature-card:hover::before {
            transform: translateX(100%);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            display: inline-block;
            padding: 1rem;
            border-radius: 50%;
            background: rgba(239, 83, 80, 0.1);
        }



        /* Footer */
        footer {
            background: #000;
            padding: 4rem 5% 2rem;
            border: 1px solid rgba(255,255,255,0.1);
            margin: 3px;
            border-radius: 15px;

        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 4rem;
        }

        .footer-main h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .hero-image img {
            width: 100%;
            height: ;
        }

        /* Animations */
        @keyframes float {
            0% { transform: translate(0, 0); }
            50% { transform: translate(30px, 30px); }
            100% { transform: translate(0, 0); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-stats {
                justify-content: center;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }
        }

        /* Mobile Drawer Styles */
        .mobile-drawer {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100vh;
            overflow-y: scroll;
            background: var(--darker);
            z-index: 1001;
            transition: left 0.3s ease;
        }

        .mobile-drawer.active {
            left: 0;
        }

        .drawer-content {
            padding: 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .close-drawer {
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .drawer-links {
            list-style: none;
            margin-bottom: 1.3rem;
        }

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

        .drawer-links a {
            color: var(--light);
            text-decoration: none;
            font-size: 1.2rem;
            display: block;
            padding: 0.5rem 0;
        }

        .drawer-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: auto;
            margin-bottom: 1rem;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .price-down {
            color: #ef4444;
        }

        .price-down span {
            font-size: 0.9rem;
        }


        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .auth-buttons {
                display: none;
            }
            .trade-chart {
                margin-left: -8%;
            }
            .logo img {
                width: 150%;
                border: 5px solid #fff;
                border-radius: 30px;
            }
        }

        /* Updated Market Trends Grid */
        .trends-container {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
        .charts {
            display: flex;
            column-gap: 10px;
            margin-bottom: 20px;
        }
        .tradingview-widget-container {
            border-radius: 30px;
        }
        .trade-chart {
            margin-top: 20px;
        }

        /* Additional styles from File B */
        .charts-container {
            padding: 2rem 5%;
            background: var(--darker);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .chart-widget {
            min-width: 300px;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            padding: 1rem;
        }

        /* Custom scrollbar for charts container */
        .charts-container::-webkit-scrollbar {
            height: 6px;
        }

        .charts-container::-webkit-scrollbar-track {
            background: rgba(255,255,255,0.05);
        }

        .charts-container::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 3px;
        }
        .drawer-links i {
            padding: 10px;
            border-radius: 10px;
            margin: 10px;
            background: rgba(255,255,255,0.05);
        }
        .drawer-links a {
            padding: 2px;
            border-radius: 15px;
            background: rgba(255,255,255,0.05);
            margin: 2px;
            transition: 1s;
        }
        .drawer-links a:hover {
            background: var(--primary);
            margin-left: 50%;
        }
        /* Base styles remain the same */
.how-it-works {
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
}

h6 {
    
    font-weight: 300;
    color: rgba(26, 35, 126);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #fff;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Connection lines for desktop */
.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, #b71c1c);
    z-index: 0;
}

.step {
    text-align: center;
    padding: 30px;
    background: rgba(183, 28, 28);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    z-index: 1;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(183, 28, 28, 0.6);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid #fff;
    color: white;
    position: relative;
    z-index: 2;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
        gap: 50px;
    }

    /* Remove horizontal line */
    .steps-container::before {
        display: none;
    }



    /* Add vertical connection line */
    .steps-container::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        background: linear-gradient(180deg, #b71c1c, #00bcd4);
        transform: translateX(-50%);
        z-index: 0;
    }

    /* Add connecting dots */
    .step::before {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        background: #b71c1c;
        border-radius: 50%;
        top: -35px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .step:first-child::before {
        display: none;
    }

    .step {
        margin: 0;
        background: rgba(183, 28, 28);
    }
}

/* Animation classes */
.step.animate {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive font sizes */
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .step h3 {
        font-size: 1.25rem;
    }

    .step p {
        font-size: 0.9rem;
    }
}
/* Existing FAQ section styles remain the same */
.faq-section {
    padding: 80px 0;
    background: rgba(183, 28, 28, 0.15);
    color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced question styles */
.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(183, 28, 28);
    transition: all 0.3s ease;
    position: relative;
    color: #fff;
}

.faq-question:hover {
    background: rgba(183, 28, 28, 0.1);
    color: #000;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    flex-grow: 1;
    padding-right: 20px;
}

/* Enhanced answer animation styles */
.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(183, 28, 28, 0.7);
    opacity: 0;
    transform: translateY(-10px);
}

.faq-item.active .faq-answer {
    padding: 20px 30px;
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced icon animation */
.faq-icon {
    transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Style for answer content */
.faq-answer p {
    margin: 0;
    color: #000;
    line-height: 1.8;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}
/* Additional styles for new sections */
        .market-trends {
            padding: 6rem 5%;
            background: #f4f4f4;
        }

        .trends-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .market-card {
            background: rgba(0,0,0,0.3);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.1);
        }

        .market-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .price-up {
            color: var(--primary);
        }

        .price-up span {
            font-size: 0.9rem;
        }

        .trading-tools {
            padding: 6rem 5%;
            background: var(--darker);
        }

        .tools-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .tool-card {
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .tool-card:hover {
            transform: translateY(-10px);
        }

        .tool-content {
            padding: 1.5rem;
        }

        .cta-section {
            padding: 6rem 5%;
            background: #fff;
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            color: #111;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .footer-col {
            margin-top: 2rem;
        }

        .footer-col h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 1rem;
        }

        .footer-col ul li a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        @media (max-width: 768px) {
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
            }
        }

.about-section {
    padding: 100px 0;
    background: rgba(183, 28, 28, 0.05);
    color: #fff;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.about-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #b71c1c;
}

.lead {
    font-size: 1.2rem;
    color: #a0aec0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    background: rgba(0,0,0,0.3);
    color: #fff;
}

.about-feature i {
    font-size: 2rem;
    color: #b71c1c;
    margin-top: 5px;
}

.about-feature h3 {
    color: rgba(183, 28, 28);
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.about-feature p {
    color: #111;
    margin: 0;
    line-height: 1.6;
}

.about-image {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.about-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .lead {
        text-align: center;
    }
}

@media screen and (max-width: 568px) {
    .about-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .about-feature i {
        margin-bottom: 15px;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 80px 0;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    padding: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    font-size: 15px;
    padding: 10px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.user-details h3 {
    margin: 0;
    color: #b71c1c;
    font-size: 1.1rem;
}

.rating {
    color: #goldenrod;
    margin-top: 5px;
}

.testimonial-text {
    color: #a0aec0;
    line-height: 1.3;
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: #b71c1c;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #64b5f6;
}

.slider-hint {
    position: absolute;
    background: rgba(33, 150, 243, 0.3);
    padding: 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-hint.left {
    left: 10px;
}

.slider-hint.right {
    right: 10px;
}

/* Team Section Styles */
.team-section {
    padding: 40px 0;
    background: #333;
    color: #fff;
    margin: 5px;
    border-top: 2px solid #b71c1c;
}

.team-slider-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow-y: scroll;

}

.team-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.team-card {
    flex: 0 0 250px;
    margin: 0 10px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}

.team-info {
    padding: 5px;
    text-align: center;
}

.team-info h3 {
    margin: 0;
    color: #b71c1c;
    font-size: 1.1rem;
}

.role {
    color: #a0aec0;
    margin: 5px 0;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 350px;
    }
    
    .team-card {
        flex: 0 0 200px;
    }
}

.whitepaper-section {
    padding: 100px 0;
    background: linear-gradient(#f4f4f4, #444, #111);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.whitepaper-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.whitepaper-content {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #b71c1c;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #b71c1c, transparent);
}

.lead {
    font-size: 1.2rem;
    color: #a0aec0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.whitepaper-text p {
    color: #a0aec0;
    margin-bottom: 30px;
    line-height: 1.8;
}

.download-container {
    margin-top: 40px;
}

.download-btn {
    position: relative;
    padding: 15px 30px;
    background: linear-gradient(45deg, #b71c1c, #64b5f6);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.btn-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(45deg, #1565c0, #b71c1c);
    transition: width 1.5s ease;
}

.download-btn:hover .btn-progress {
    width: 100%;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
}

.whitepaper-image {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease forwards;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.2), transparent 70%);
    filter: blur(20px);
    animation: glowPulse 3s infinite;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .whitepaper-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .whitepaper-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .whitepaper-text {
        text-align: center;
    }

    .download-container {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

