
        :root {
            --primary: #f9236c;
            --secondary: #000000;
            --text-light: #ffffff;
            --text-dark: #111111;
            --accent: #ff4d8d;
            --glow: 0 0 10px rgba(249, 35, 108, 0.7);
            --card-bg: rgba(30, 30, 30, 0.8);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--secondary);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }

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

        section {
            padding: 100px 0;
            position: relative;
        }

        /* Scroll Progress Bar */
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1000;
        }

        .progress-bar {
            height: 100%;
            background: var(--primary);
            width: 0%;
            transition: width 0.3s ease;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 999;
            transition: all 0.3s ease;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }

        nav.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--text-light);
            text-decoration: none;
        }

        .logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

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

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

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

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
            z-index: -2;
        }

        .hero-content {
            max-width: 800px;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.5s;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.8s;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 1.1s;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--text-light);
            box-shadow: var(--glow);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(249, 35, 108, 0.4);
        }

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

        .btn-secondary:hover {
            background: rgba(249, 35, 108, 0.1);
            box-shadow: var(--glow);
        }

        .credit-card-3d {
            position: absolute;
            width: 500px;
            height: 300px;
            right: 10%;
            top: 50%;
            transform: translateY(-50%);
            perspective: 1000px;
            opacity: 0;
            animation: fadeIn 1s forwards 1.4s;
        }

        .card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 0.8s;
        }

        .credit-card-3d:hover .card-inner {
            transform: rotateY(180deg);
        }

        .card-front, .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }

        .card-front {
            background: linear-gradient(45deg, #1a1a1a, #333);
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card-back {
            background: linear-gradient(45deg, #333, #1a1a1a);
            transform: rotateY(180deg);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-chip {
            width: 50px;
            height: 40px;
            background: linear-gradient(45deg, #d4af37, #ffd700);
            border-radius: 5px;
            margin-bottom: 20px;
        }

        .card-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .card-details {
            display: flex;
            justify-content: space-between;
        }

        .card-holder, .card-expiry {
            font-size: 0.9rem;
        }

        .card-holder span, .card-expiry span {
            display: block;
            font-size: 0.7rem;
            opacity: 0.7;
        }

        .card-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            color: var(--primary);
        }

        .card-magnetic-strip {
            width: 100%;
            height: 40px;
            background: #000;
            margin-bottom: 20px;
        }

        .card-signature {
            width: 70%;
            height: 30px;
            background: repeating-linear-gradient(
                45deg,
                #fff,
                #fff 5px,
                #eee 5px,
                #eee 10px
            );
            display: flex;
            align-items: center;
            padding-left: 10px;
            font-size: 0.7rem;
            color: #333;
        }

        .card-cvv {
            background: #fff;
            color: #000;
            padding: 5px 10px;
            border-radius: 3px;
            font-family: 'Orbitron', sans-serif;
        }

        /* About Section */
        .about {
            background: var(--card-bg);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--primary);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .about-visuals {
            flex: 1;
            position: relative;
            height: 400px;
        }

        .chart-container {
            position: relative;
            width: 100%;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 20px;
            overflow: hidden;
        }

        .chart-bar {
            position: absolute;
            bottom: 20px;
            width: 40px;
            background: var(--primary);
            border-radius: 5px 5px 0 0;
            animation: growBar 2s forwards;
            box-shadow: var(--glow);
        }

        .bar-1 {
            left: 20%;
            height: 0;
            animation-delay: 0.5s;
        }

        .bar-2 {
            left: 35%;
            height: 0;
            animation-delay: 1s;
        }

        .bar-3 {
            left: 50%;
            height: 0;
            animation-delay: 1.5s;
        }

        .bar-4 {
            left: 65%;
            height: 0;
            animation-delay: 2s;
        }

        .bar-5 {
            left: 80%;
            height: 0;
            animation-delay: 2.5s;
        }

        .floating-cards {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .floating-card {
            position: absolute;
            width: 80px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: float 6s infinite ease-in-out;
        }

        .floating-card i {
            color: var(--primary);
            font-size: 1.5rem;
        }

        .card-1 {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .card-2 {
            top: 20%;
            right: 15%;
            animation-delay: 1s;
        }

        .card-3 {
            bottom: 30%;
            left: 15%;
            animation-delay: 2s;
        }

        .card-4 {
            bottom: 10%;
            right: 10%;
            animation-delay: 3s;
        }

        /* Mission Section */
        .mission {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23f9236c" opacity="0.5"/></svg>');
            background-size: 5%;
            position: relative;
            overflow: hidden;
        }

        .mission-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .mission p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
        }

        .mission p.animate {
            animation: fadeUp 0.8s forwards;
        }

        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            animation: rise 8s linear infinite;
            opacity: 0;
        }

        /* Vision Section */
        .vision {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect x="0" y="0" width="200" height="200" fill="%23000"/><path d="M0,100 Q50,50 100,100 T200,100" stroke="%23f9236c" stroke-width="2" fill="none"/></svg>');
            background-attachment: fixed;
            background-size: cover;
            position: relative;
        }

        .vision-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .vision p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* Trade5 Section */
        .trade5 {
            background: var(--card-bg);
        }

        .trade5-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .trade5-text {
            flex: 1;
        }

        .trade5-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .trade5-visuals {
            flex: 1;
            position: relative;
            height: 300px;
        }

        .chart-graph {
            position: relative;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 20px;
            overflow: hidden;
        }

        .graph-line {
            position: absolute;
            width: 90%;
            height: 2px;
            background: var(--primary);
            bottom: 50px;
            left: 5%;
            animation: drawLine 2s forwards;
        }

        .graph-line::before {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--primary);
            border-radius: 50%;
            top: -4px;
            left: 0;
            box-shadow: var(--glow);
        }

        .graph-point {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            box-shadow: var(--glow);
        }

        .point-1 {
            bottom: 50px;
            left: 5%;
            animation: glow 2s infinite;
        }

        .point-2 {
            bottom: 80px;
            left: 25%;
            animation: glow 2s infinite 0.5s;
        }

        .point-3 {
            bottom: 40px;
            left: 45%;
            animation: glow 2s infinite 1s;
        }

        .point-4 {
            bottom: 90px;
            left: 65%;
            animation: glow 2s infinite 1.5s;
        }

        .point-5 {
            bottom: 60px;
            left: 85%;
            animation: glow 2s infinite 2s;
        }

        /* Contact Section */
        .contact {
            background: var(--card-bg);
        }

        .contact-content {
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-form {
            flex: 1;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            color: var(--text-light);
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: var(--glow);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .btn-submit {
            background: var(--primary);
            color: var(--text-light);
            border: none;
            cursor: pointer;
            width: 100%;
            padding: 15px;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 5px;
            transition: all 0.3s ease;
            box-shadow: var(--glow);
            position: relative;
            overflow: hidden;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(249, 35, 108, 0.4);
        }

        .btn-submit:active {
            transform: translateY(-1px);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

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

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

        /* Sign Up Section */
        .signup {
            background: linear-gradient(45deg, rgba(20, 20, 20, 0.9), rgba(40, 40, 40, 0.9));
        }

        .signup-cards {
            display: flex;
            justify-content: center;
            gap: 50px;
            max-width: 900px;
            margin: 0 auto;
        }

        .signup-card {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 400px;
        }

        .signup-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--primary), transparent, var(--primary));
            z-index: -1;
            border-radius: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .signup-card:hover::before {
            opacity: 1;
            animation: borderGlow 2s linear infinite;
        }

        .signup-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }

        .signup-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .signup-card p {
            margin-bottom: 30px;
        }

        /* Lucky Spin Section */
        .lucky-spin {
            background: rgba(10, 10, 10, 0.9);
            text-align: center;
            padding: 80px 0;
        }

        .wheel-container {
            position: relative;
            width: 300px;
            height: 300px;
            margin: 0 auto 40px;
        }

        .wheel {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(
                from 0deg,
                var(--primary) 0deg 60deg,
                #333 60deg 120deg,
                var(--primary) 120deg 180deg,
                #333 180deg 240deg,
                var(--primary) 240deg 300deg,
                #333 300deg 360deg
            );
            position: relative;
            transition: transform 3s cubic-bezier(0.17, 0.67, 0.83, 0.67);
            box-shadow: 0 0 20px rgba(249, 35, 108, 0.5);
        }

        .wheel-pointer {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 40px;
            background: var(--primary);
            clip-path: polygon(50% 100%, 0 0, 100% 0);
            z-index: 10;
        }

        .spin-btn {
            background: var(--primary);
            color: var(--text-light);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--glow);
        }

        .spin-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(249, 35, 108, 0.4);
        }

        /* Footer */
        footer {
            background: #000;
            padding: 40px 0;
            text-align: center;
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .footer-logo span {
            color: var(--primary);
        }

        .copyright {
            margin-top: 20px;
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Cursor Effects */
        .cursor-effect {
            position: fixed;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary);
            pointer-events: none;
            mix-blend-mode: screen;
            z-index: 9999;
            opacity: 0.7;
            transform: translate(-50%, -50%);
            transition: transform 0.1s;
        }

        .cursor-trail {
            position: fixed;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            pointer-events: none;
            z-index: 9998;
            opacity: 0;
            transition: opacity 0.3s;
        }

        /* Animations */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        @keyframes growBar {
            to {
                height: var(--height);
            }
        }

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

        @keyframes rise {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        @keyframes drawLine {
            from {
                width: 0;
            }
            to {
                width: 90%;
            }
        }

        @keyframes glow {
            0%, 100% {
                box-shadow: 0 0 5px var(--primary);
            }
            50% {
                box-shadow: 0 0 15px var(--primary);
            }
        }

        @keyframes borderGlow {
            0% {
                background-position: 0% 0%;
            }
            100% {
                background-position: 200% 200%;
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .about-content, .trade5-content, .contact-content {
                flex-direction: column;
            }
            
            .credit-card-3d {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                margin: 50px auto 0;
                width: 400px;
            }
            
            .signup-cards {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.9);
                flex-direction: column;
                padding: 20px 0;
                text-align: center;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .credit-card-3d {
                width: 350px;
                height: 210px;
            }
            
            .card-number {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .credit-card-3d {
                width: 300px;
                height: 180px;
            }
            
            .card-number {
                font-size: 1rem;
            }
            
            .wheel-container {
                width: 250px;
                height: 250px;
            }
        }
  