      /* Global Styles */
        :root {
            --primary-red: #e63946;
            --primary-green: #2a9d8f;
            --primary-gold: #e9c46a;
            --primary-black: #1a1a1a;
            --dark-black: #121212;
            --light-gray: #f5f5f5;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--dark-black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
            position: relative;
        }
        
        h1, h2, h3, h4 {
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        h1 {
            font-size: 3.5rem;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-gold);
        }
        
        h3 {
            font-size: 1.8rem;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary-gold);
            color: var(--primary-black);
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            background: #f4a261;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }
        
        .btn:focus:not(:active)::after {
            animation: ripple 1s ease-out;
        }
        
        .btn-red {
            background: var(--primary-red);
            color: white;
        }
        
        .btn-green {
            background: var(--primary-green);
            color: white;
        }
        
        .text-center {
            text-align: center;
        }
        
        .text-gold {
            color: var(--primary-gold);
        }
        
        .text-green {
            color: var(--primary-green);
        }
        
        .text-red {
            color: var(--primary-red);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideInLeft {
            from { 
                transform: translateX(-50px);
                opacity: 0;
            }
            to { 
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes slideInRight {
            from { 
                transform: translateX(50px);
                opacity: 0;
            }
            to { 
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes slideInUp {
            from { 
                transform: translateY(50px);
                opacity: 0;
            }
            to { 
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes slideInDown {
            from { 
                transform: translateY(-50px);
                opacity: 0;
            }
            to { 
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 1;
            }
            20% {
                transform: scale(25, 25);
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: scale(40, 40);
            }
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes shine {
            from { background-position: 200% center; }
            to { background-position: -200% center; }
        }
        
        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        @keyframes dash {
            0% {
                stroke-dasharray: 1, 200;
                stroke-dashoffset: 0;
            }
            50% {
                stroke-dasharray: 89, 200;
                stroke-dashoffset: -35;
            }
            100% {
                stroke-dasharray: 89, 200;
                stroke-dashoffset: -124;
            }
        }
        
        .animate {
            opacity: 0;
        }
        
        .animated {
            opacity: 1;
        }
        
        .fadeIn {
            animation: fadeIn 1s ease forwards;
        }
        
        .slideInLeft {
            animation: slideInLeft 0.8s ease forwards;
        }
        
        .slideInRight {
            animation: slideInRight 0.8s ease forwards;
        }
        
        .slideInUp {
            animation: slideInUp 0.8s ease forwards;
        }
        
        .slideInDown {
            animation: slideInDown 0.8s ease forwards;
        }
        
        .float {
            animation: float 4s ease-in-out infinite;
        }
        
        .pulse {
            animation: pulse 2s ease infinite;
        }
        
        /* Header Styles */
        header {
            background-color: rgba(26, 26, 26, 0.9);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 10px 0;
            background-color: rgba(18, 18, 18, 0.98);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .logo span {
            color: var(--primary-green);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
            position: relative;
        }
        
        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-gold);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--primary-gold);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .mobile-menu-btn:hover {
            transform: scale(1.1);
        }
        
        /* Hero Section */
        #hero {
            height: 100vh;
            display: flex;
            align-items: center;
             position: relative;
            overflow: hidden;
        }
        
        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(233, 196, 106, 0.1) 0%, rgba(42, 157, 143, 0.1) 100%);
            z-index: -1;
        }
        
        .hero-content {
            max-width: 600px;
        }
        
        .hero-content h1 span {
            color: var(--primary-gold);
            position: relative;
            display: inline-block;
        }
        
        .hero-content h1 span::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-gold);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s ease;
        }
        
        .hero-content h1:hover span::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        .hero-content p {
            margin-bottom: 30px;
            font-size: 1.2rem;
        }
        
        .hero-btns {
            display: flex;
            gap: 20px;
        }
        
        /* Animated Trading Chart */
        .chart-animation {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: 500px;
            height: 300px;
            background-color: rgba(26, 26, 26, 0.7);
            border-radius: 10px;
            border: 1px solid var(--primary-gold);
            overflow: hidden;
            display: none;
        }
        
        .chart-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to right, var(--primary-green), var(--primary-red));
            clip-path: polygon(0% 100%, 5% 90%, 10% 80%, 15% 85%, 20% 75%, 25% 70%, 30% 65%, 35% 60%, 40% 55%, 45% 65%, 50% 50%, 55% 45%, 60% 55%, 65% 40%, 70% 35%, 75% 45%, 80% 30%, 85% 25%, 90% 35%, 95% 20%, 100% 15%);
            animation: float 6s ease-in-out infinite;
        }
        
        /* About Section */
        #about {
            background-color: var(--primary-black);
            position: relative;
            overflow: hidden;
        }
        
        #about::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background-color: var(--primary-gold);
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.1;
            z-index: 0;
        }
        
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.03);
        }
        
        .about-image::after {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary-gold);
            border-radius: 10px;
            z-index: -1;
            transition: all 0.5s ease;
        }
        
        .about-image:hover::after {
            top: -15px;
            left: -15px;
        }
        
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }
        
        .mission-card, .vision-card {
            background-color: var(--dark-black);
            padding: 30px;
            border-radius: 10px;
            border-top: 4px solid var(--primary-gold);
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }
        
        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .mission-card::before, .vision-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(233, 196, 106, 0.1) 0%, rgba(42, 157, 143, 0.1) 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .mission-card:hover::before, .vision-card:hover::before {
            opacity: 1;
        }
        
        .mission-card h3, .vision-card h3 {
            color: var(--primary-gold);
            display: flex;
            align-items: center;
        }
        
        .mission-card h3 i, .vision-card h3 i {
            margin-right: 10px;
        }
        
        /* Features Section */
        #features {
            background-color: var(--primary-black);
            position: relative;
            overflow: hidden;
        }
        
        #features::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background-color: var(--primary-gold);
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.1;
            z-index: 0;
        }
        
        #features::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background-color: var(--primary-green);
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.1;
            z-index: 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .feature-card {
            background-color: var(--dark-black);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.5s ease;
            border-top: 4px solid var(--primary-gold);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(233, 196, 106, 0.1) 0%, rgba(42, 157, 143, 0.1) 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .feature-card:hover::before {
            opacity: 1;
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--primary-gold);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.2);
            color: var(--primary-green);
        }
        
        /* Trading Pairs Section */
        #trading-pairs {
            background-color: var(--dark-black);
            position: relative;
            overflow: hidden;
        }
        
        #trading-pairs::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            background-color: var(--primary-red);
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.1;
            z-index: 0;
        }
        
        .pairs-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            background-color: var(--primary-black);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
        }
        
        .pairs-table th, .pairs-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #333;
            transition: all 0.3s ease;
        }
        
        .pairs-table th {
            background-color: var(--primary-gold);
            color: var(--primary-black);
            font-weight: 600;
        }
        
        .pairs-table tr:last-child td {
            border-bottom: none;
        }
        
        .pairs-table tr:hover td {
            background-color: #333;
            transform: scale(1.01);
        }
        
        .up {
            color: var(--primary-green);
            font-weight: 600;
        }
        
        .down {
            color: var(--primary-red);
            font-weight: 600;
        }
        
        /* Platform Section */
        #platform {
            background-color: var(--primary-black);
            position: relative;
            overflow: hidden;
        }
        
        #platform::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background-color: var(--primary-gold);
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.1;
            z-index: 0;
        }
        
        .platform-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .platform-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease;
        }
        
        .platform-image:hover img {
            transform: perspective(1000px) rotateY(10deg) rotateX(5deg) scale(1.05);
        }
        
        .platform-features li {
            margin-bottom: 15px;
            list-style-type: none;
            position: relative;
            padding-left: 30px;
            transition: all 0.3s ease;
        }
        
        .platform-features li:hover {
            transform: translateX(10px);
        }
        
        .platform-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-gold);
            transition: all 0.3s ease;
        }
        
        .platform-features li:hover::before {
            color: var(--primary-green);
            transform: scale(1.3);
        }
        
        /* Stats Section */
        #stats {
            background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-black) 100%);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        #stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2015&q=80') no-repeat center center/cover;
            opacity: 0.1;
            z-index: 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .stat-card {
            text-align: center;
            padding: 30px;
            background-color: rgba(26, 26, 26, 0.7);
            border-radius: 10px;
            border-top: 4px solid var(--primary-gold);
            transition: all 0.5s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            background-color: rgba(26, 26, 26, 0.9);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .stat-number::after {
            content: '+';
            position: absolute;
            right: -15px;
            top: 0;
            color: var(--primary-green);
        }
        
        .stat-title {
            font-size: 1.2rem;
            color: var(--white);
        }
        
        /* Testimonials Section */
        #testimonials {
            background-color: var(--dark-black);
            position: relative;
            overflow: hidden;
        }
        
        #testimonials::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background-color: var(--primary-green);
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.1;
            z-index: 0;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-card {
            background-color: var(--primary-black);
            padding: 30px;
            border-radius: 10px;
            position: relative;
            transition: all 0.5s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .testimonial-card::before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 2rem;
            color: rgba(233, 196, 106, 0.1);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover::before {
            color: rgba(233, 196, 106, 0.3);
            transform: scale(1.2);
        }
        
        .testimonial-content {
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            border: 2px solid var(--primary-gold);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover .author-avatar {
            transform: scale(1.1);
            border-color: var(--primary-green);
        }
        
        .author-info h4 {
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: var(--primary-gold);
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        
        /* CTA Section */
        #cta {
            background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-black) 100%);
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        #cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(233, 196, 106, 0.1) 100%);
            z-index: 0;
        }
        
        #cta h2 {
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }
        
        #cta p {
            max-width: 700px;
            margin: 0 auto 40px;
            position: relative;
            z-index: 1;
        }
        
        .hero-btns {
            position: relative;
            z-index: 1;
        }
        
        .shiny-btn {
            position: relative;
            overflow: hidden;
            background: linear-gradient(90deg, var(--primary-gold), var(--primary-green), var(--primary-gold));
            background-size: 200% auto;
            color: var(--primary-black);
            font-weight: 600;
            border: none;
            animation: shine 3s linear infinite;
        }
        
        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--dark-black);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }
        
        .preloader.hidden {
            opacity: 0;
            pointer-events: none;
        }
        
        .loader {
            width: 50px;
            height: 50px;
            position: relative;
        }
        
        .loader-circle {
            width: 100%;
            height: 100%;
            border: 3px solid transparent;
            border-top-color: var(--primary-gold);
            border-radius: 50%;
            animation: rotate 1.5s linear infinite;
        }
        
        .loader-circle::before, .loader-circle::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            border: 3px solid transparent;
        }
        
        .loader-circle::before {
            top: 5px;
            left: 5px;
            right: 5px;
            bottom: 5px;
            border-top-color: var(--primary-green);
            animation: rotate 2s linear infinite;
        }
        
        .loader-circle::after {
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            border-top-color: var(--primary-red);
            animation: rotate 1s linear infinite;
        }
        
        /* Floating Elements */
        .floating-element {
            position: absolute;
            background-color: rgba(233, 196, 106, 0.1);
            border-radius: 50%;
            z-index: 0;
        }
        
        .floating-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 5%;
            animation: float 8s ease-in-out infinite;
        }
        
        .floating-element:nth-child(2) {
            width: 150px;
            height: 150px;
            bottom: 10%;
            right: 10%;
            animation: float 10s ease-in-out infinite reverse;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .platform-container, .about-container {
                grid-template-columns: 1fr;
            }
            
            .platform-image, .about-image {
                order: -1;
            }
            
            .chart-animation {
                display: none;
            }
            
            .mission-vision {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--dark-black);
                flex-direction: column;
                align-items: center;
                padding-top: 40px;
                transition: left 0.3s ease;
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .feature-card, .testimonial-card, .mission-card, .vision-card, .stat-card {
                padding: 20px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideInLeft {
            from { 
                transform: translateX(-50px);
                opacity: 0;
            }
            to { 
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes slideInRight {
            from { 
                transform: translateX(50px);
                opacity: 0;
            }
            to { 
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes slideInUp {
            from { 
                transform: translateY(50px);
                opacity: 0;
            }
            to { 
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes slideInDown {
            from { 
                transform: translateY(-50px);
                opacity: 0;
            }
            to { 
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 1;
            }
            20% {
                transform: scale(25, 25);
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: scale(40, 40);
            }
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes shine {
            from { background-position: 200% center; }
            to { background-position: -200% center; }
        }
        
        .animate {
            opacity: 0;
        }
        
        .animated {
            opacity: 1;
        }
        
        .fadeIn {
            animation: fadeIn 1s ease forwards;
        }
        
        .slideInLeft {
            animation: slideInLeft 0.8s ease forwards;
        }
        
        .slideInRight {
            animation: slideInRight 0.8s ease forwards;
        }
        
        .slideInUp {
            animation: slideInUp 0.8s ease forwards;
        }
        
        .slideInDown {
            animation: slideInDown 0.8s ease forwards;
        }
        
        .float {
            animation: float 4s ease-in-out infinite;
        }
        
        .pulse {
            animation: pulse 2s ease infinite;
        }
        
        /* Header Styles */
        header {
            background-color: rgba(26, 26, 26, 0.9);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 10px 0;
            background-color: rgba(18, 18, 18, 0.98);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .logo span {
            color: var(--primary-green);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
            position: relative;
        }
        
        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-gold);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--primary-gold);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .mobile-menu-btn:hover {
            transform: scale(1.1);
        }
        
        /* Hero Section */
       #hero {
        height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        }

        #hero video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -1;
            object-fit: cover;
        }

        #hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 26, 26, 0.8);
            z-index: -1;
        }
        
        .hero-content {
            max-width: 600px;
        }
        
        .hero-content h1 span {
            color: var(--primary-gold);
            position: relative;
            display: inline-block;
        }
        
        .hero-content h1 span::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-gold);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s ease;
        }
        
        .hero-content h1:hover span::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        .hero-content p {
            margin-bottom: 30px;
            font-size: 1.2rem;
        }
        
        .hero-btns {
            display: flex;
            gap: 20px;
        }
        
        /* Animated Trading Chart */
        .chart-animation {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: 500px;
            height: 300px;
            background-color: rgba(26, 26, 26, 0.7);
            border-radius: 10px;
            border: 1px solid var(--primary-gold);
            overflow: hidden;
            display: none;
        }
        
        .chart-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to right, var(--primary-green), var(--primary-red));
            clip-path: polygon(0% 100%, 5% 90%, 10% 80%, 15% 85%, 20% 75%, 25% 70%, 30% 65%, 35% 60%, 40% 55%, 45% 65%, 50% 50%, 55% 45%, 60% 55%, 65% 40%, 70% 35%, 75% 45%, 80% 30%, 85% 25%, 90% 35%, 95% 20%, 100% 15%);
            animation: float 6s ease-in-out infinite;
        }
        
        /* Features Section */
        #features {
            background-color: var(--primary-black);
            position: relative;
            overflow: hidden;
        }
        
        #features::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background-color: var(--primary-gold);
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.1;
            z-index: 0;
        }
        
        #features::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background-color: var(--primary-green);
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.1;
            z-index: 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .feature-card {
            background-color: var(--dark-black);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.5s ease;
            border-top: 4px solid var(--primary-gold);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(233, 196, 106, 0.1) 0%, rgba(42, 157, 143, 0.1) 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .feature-card:hover::before {
            opacity: 1;
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--primary-gold);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.2);
            color: var(--primary-green);
        }
        
        /* Trading Pairs Section */
        #trading-pairs {
            background-color: var(--dark-black);
            position: relative;
            overflow: hidden;
        }
        
        #trading-pairs::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            background-color: var(--primary-red);
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.1;
            z-index: 0;
        }
        
        .pairs-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            background-color: var(--primary-black);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
        }
        
        .pairs-table th, .pairs-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #333;
            transition: all 0.3s ease;
        }
        
        .pairs-table th {
            background-color: var(--primary-gold);
            color: var(--primary-black);
            font-weight: 600;
        }
        
        .pairs-table tr:last-child td {
            border-bottom: none;
        }
        
        .pairs-table tr:hover td {
            background-color: #333;
            transform: scale(1.01);
        }
        
        .up {
            color: var(--primary-green);
            font-weight: 600;
        }
        
        .down {
            color: var(--primary-red);
            font-weight: 600;
        }
        
        /* Platform Section */
        #platform {
            background-color: var(--primary-black);
            position: relative;
            overflow: hidden;
        }
        
        #platform::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background-color: var(--primary-gold);
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.1;
            z-index: 0;
        }
        
        .platform-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .platform-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease;
        }
        
        .platform-image:hover img {
            transform: perspective(1000px) rotateY(10deg) rotateX(5deg) scale(1.05);
        }
        
        .platform-features li {
            margin-bottom: 15px;
            list-style-type: none;
            position: relative;
            padding-left: 30px;
            transition: all 0.3s ease;
        }
        
        .platform-features li:hover {
            transform: translateX(10px);
        }
        
        .platform-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-gold);
            transition: all 0.3s ease;
        }
        
        .platform-features li:hover::before {
            color: var(--primary-green);
            transform: scale(1.3);
        }
        
        /* Testimonials Section */
        #testimonials {
            background-color: var(--dark-black);
            position: relative;
            overflow: hidden;
        }
        
        #testimonials::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background-color: var(--primary-green);
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.1;
            z-index: 0;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-card {
            background-color: var(--primary-black);
            padding: 30px;
            border-radius: 10px;
            position: relative;
            transition: all 0.5s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .testimonial-card::before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 2rem;
            color: rgba(233, 196, 106, 0.1);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover::before {
            color: rgba(233, 196, 106, 0.3);
            transform: scale(1.2);
        }
        
        .testimonial-content {
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            border: 2px solid var(--primary-gold);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover .author-avatar {
            transform: scale(1.1);
            border-color: var(--primary-green);
        }
        
        .author-info h4 {
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: var(--primary-gold);
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        
        /* CTA Section */
        /* #cta {
            background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-black) 100%);
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        } */
        
       #cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-black) 100%);
    color: white;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text {
    flex: 1;
}

.cta-image {
    flex: 1;
    text-align: center;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
    }
    
    .cta-image {
        order: -1;
        margin-bottom: 30px;
    }
}
        
        .hero-btns {
            position: relative;
            z-index: 1;
        }
        
        .shiny-btn {
            position: relative;
            overflow: hidden;
            background: linear-gradient(90deg, var(--primary-gold), var(--primary-green), var(--primary-gold));
            background-size: 200% auto;
            color: var(--primary-black);
            font-weight: 600;
            border: none;
            animation: shine 3s linear infinite;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-black);
            padding: 50px 0 20px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(18, 18, 18, 0.95) 100%);
            z-index: 0;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 20px;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .footer-logo:hover {
            transform: scale(1.05);
        }
        
        .footer-logo span {
            color: var(--primary-green);
        }
        
        .footer-links h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--primary-gold);
            position: relative;
            display: inline-block;
        }
        
        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50%;
            height: 2px;
            background-color: var(--primary-gold);
            transition: width 0.3s ease;
        }
        
        .footer-links h3:hover::after {
            width: 100%;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-links ul li:hover {
            transform: translateX(5px);
        }
        
        .footer-links ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--primary-gold);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #333;
            border-radius: 50%;
            color: var(--white);
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--primary-gold);
            color: var(--primary-black);
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }
        
        /* Floating Elements */
        .floating-element {
            position: absolute;
            background-color: rgba(233, 196, 106, 0.1);
            border-radius: 50%;
            z-index: 0;
        }
        
        .floating-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 5%;
            animation: float 8s ease-in-out infinite;
        }
        
        .floating-element:nth-child(2) {
            width: 150px;
            height: 150px;
            bottom: 10%;
            right: 10%;
            animation: float 10s ease-in-out infinite reverse;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .platform-container {
                grid-template-columns: 1fr;
            }
            
            .platform-image {
                order: -1;
            }
            
            .chart-animation {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--dark-black);
                flex-direction: column;
                align-items: center;
                padding-top: 40px;
                transition: left 0.3s ease;
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .feature-card, .testimonial-card {
                padding: 20px;
            }
        }
