:root {
     --primary-color: #00f0ff;
     --secondary-color: #9f59ff;
     --accent-color: #7000ff;
     --bg-dark: #0a0a0f;
     --bg-darker: #050508;
     --bg-card: rgba(20, 20, 30, 0.6);
     --text-primary: #ffffff;
     --text-secondary: #fff;
     --gradient-primary: linear-gradient(135deg, #00f0ff 0%, #9f59ff 50%, #7000ff 100%);
     --gradient-secondary: linear-gradient(135deg, #7000ff 0%, #9f59ff 100%);
     --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3);
     --glow-pink: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3);
     --glow-purple: 0 0 20px rgba(112, 0, 255, 0.5), 0 0 40px rgba(112, 0, 255, 0.3);
}
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 html {
     scroll-behavior: smooth;
}
 body {
     font-family: 'Rajdhani', sans-serif;
     background-color: var(--bg-dark);
     color: var(--text-primary);
     line-height: 1.6;
     overflow-x: hidden;
}
 #particles-js {
     position: fixed;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     z-index: -1;
     background: var(--bg-darker);
}
 .container {
     max-width: 100%;
     margin: 0;
     padding: 0 50px;
}
 .navbar {
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 1000;
     background: rgba(10, 10, 15, 0.8);
     backdrop-filter: blur(10px);
     border-bottom: 1px solid rgba(0, 240, 255, 0.1);
     transition: all 0.3s ease;
}
 .navbar.scrolled {
     background: rgba(5, 5, 8, 0.95);
     box-shadow: var(--glow-cyan);
}
 .navbar .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1rem 50px;
}
 .nav-brand {
     display: flex;
     align-items: center;
     gap: 10px;
     font-family: 'Orbitron', sans-serif;
     font-size: 1.5rem;
     font-weight: 700;
}
 .nav-brand i {
     color: var(--primary-color);
     font-size: 1.8rem;
}
 .nav-menu {
     display: flex;
     list-style: none;
     gap: 2rem;
     align-items: center;
}
 .nav-link {
     color: var(--text-secondary);
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s ease;
     position: relative;
}
 .nav-link:hover {
     color: var(--primary-color);
}
 .nav-link::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--gradient-primary);
     transition: width 0.3s ease;
}
 .nav-link:hover::after {
     width: 100%;
}
 .btn-nav {
     padding: 8px 20px;
     border-radius: 25px;
     text-decoration: none;
     color: var(--text-primary);
     border: 1px solid rgba(0, 240, 255, 0.3);
     transition: all 0.3s ease;
     font-weight: 500;
}
 .btn-nav:hover {
     border-color: var(--primary-color);
     background: rgba(0, 240, 255, 0.1);
}
 .btn-nav.btn-primary {
     background: var(--gradient-primary);
     border: none;
}
 .btn-nav.btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: var(--glow-cyan);
}
 .hamburger {
     display: none;
     flex-direction: column;
     cursor: pointer;
     gap: 5px;
}
 .hamburger span {
     width: 25px;
     height: 3px;
     background: var(--primary-color);
     border-radius: 2px;
     transition: all 0.3s ease;
}
 .hero {
     min-height: 100vh;
     display: flex;
     align-items: center;
     padding-top: 80px;
     position: relative;
}
 .hero .container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
}
 .hero-title {
     font-family: 'Orbitron', sans-serif;
     font-size: 4rem;
     font-weight: 900;
     line-height: 1.2;
     margin-bottom: 1.5rem;
}
 .neon-text {
     background: var(--gradient-primary);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.5));
}
 .gradient-text {
     animation: gradient-shift 3s ease infinite;
     background-size: 200% 200%;
}
 @keyframes gradient-shift {
     0%, 100% {
         background-position: 0% 50%;
    }
     50% {
         background-position: 100% 50%;
    }
}
 .hero-subtitle {
     font-size: 1.25rem;
     color: var(--text-secondary);
     margin-bottom: 2rem;
     max-width: 500px;
}
 .hero-buttons {
     display: flex;
     gap: 1rem;
     margin-bottom: 3rem;
}
 .btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 15px 35px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     font-size: 1.1rem;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
}
 .btn-primary {
     background: var(--gradient-primary);
     color: var(--text-primary);
     border: none;
}
 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: var(--glow-cyan);
}
 .btn-glow {
     animation: pulse-glow 2s ease-in-out infinite;
}
 @keyframes pulse-glow {
     0%, 100% {
         box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    }
     50% {
         box-shadow: 0 0 40px rgba(0, 240, 255, 0.8), 0 0 60px rgba(255, 0, 255, 0.5);
    }
}
 .btn-secondary {
     background: transparent;
     color: var(--text-primary);
     border: 2px solid rgba(0, 240, 255, 0.3);
}
 .btn-secondary:hover {
     border-color: var(--primary-color);
     background: rgba(0, 240, 255, 0.1);
}
 .btn-large {
     padding: 18px 45px;
     font-size: 1.2rem;
}
 .hero-stats {
     display: flex;
     gap: 3rem;
}
 .stat-item {
     text-align: center;
}
 .stat-number {
     font-family: 'Orbitron', sans-serif;
     font-size: 2rem;
     font-weight: 700;
     background: var(--gradient-primary);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
}
 .stat-label {
     color: var(--text-secondary);
     font-size: 0.9rem;
     margin-top: 5px;
}
 .card-container {
     position: relative;
     display: flex;
     justify-content: center;
     align-items: center;
}
 .card-main {
     width: 100%;
     max-width: 600px;
     filter: drop-shadow(0 20px 60px rgba(0, 240, 255, 0.3));
     position: relative;
     z-index: 2;
}
 .floating {
     animation: floating 6s ease-in-out infinite;
}
 @keyframes floating {
     0%, 100% {
         transform: translateY(0px) rotate(-5deg);
    }
     50% {
         transform: translateY(-20px) rotate(5deg);
    }
}
 .card-glow {
     position: absolute;
     width: 120%;
     height: 120%;
     background: radial-gradient(circle, rgba(0, 240, 255, 0.3) 0%, transparent 70%);
     filter: blur(40px);
     animation: glow-pulse 4s ease-in-out infinite;
}
 @keyframes glow-pulse {
     0%, 100% {
         opacity: 0.5;
         transform: scale(1);
    }
     50% {
         opacity: 1;
         transform: scale(1.1);
    }
}
 .scroll-indicator {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     animation: bounce 2s infinite;
}
 @keyframes bounce {
     0%, 20%, 50%, 80%, 100% {
         transform: translateX(-50%) translateY(0);
    }
     40% {
         transform: translateX(-50%) translateY(-10px);
    }
     60% {
         transform: translateX(-50%) translateY(-5px);
    }
}
 .mouse {
     width: 25px;
     height: 40px;
     border: 2px solid var(--primary-color);
     border-radius: 15px;
     display: flex;
     justify-content: center;
     padding-top: 8px;
}
 .wheel {
     width: 3px;
     height: 8px;
     background: var(--primary-color);
     border-radius: 2px;
     animation: scroll 1.5s infinite;
}
 @keyframes scroll {
     0% {
         opacity: 1;
         transform: translateY(0);
    }
     100% {
         opacity: 0;
         transform: translateY(12px);
    }
}
 .features {
     padding: 100px 0;
     position: relative;
}
 .section-header {
     text-align: center;
     margin-bottom: 60px;
}
 .section-title {
     font-family: 'Orbitron', sans-serif;
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 1rem;
}
 .section-subtitle {
     font-size: 1.2rem;
     color: var(--text-secondary);
}
 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;
}
 .feature-card {
     background: var(--bg-card);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(0, 240, 255, 0.1);
     border-radius: 20px;
     padding: 40px 30px;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
}
 .feature-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: var(--gradient-primary);
     opacity: 0;
     transition: opacity 0.3s ease;
}
 .feature-card:hover::before {
     opacity: 0.05;
}
 .feature-card:hover {
     transform: translateY(-10px);
     border-color: var(--primary-color);
     box-shadow: var(--glow-cyan);
}
 .feature-icon {
     width: 80px;
     height: 80px;
     background: var(--gradient-primary);
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     margin-bottom: 20px;
     position: relative;
}
 .feature-icon i {
     color: var(--text-primary);
     filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}
 .feature-title {
     font-family: 'Orbitron', sans-serif;
     font-size: 1.5rem;
     margin-bottom: 15px;
}
 .feature-description {
     color: var(--text-secondary);
     line-height: 1.8;
}
 .benefits {
     padding: 100px 0;
     position: relative;
}
 .benefits-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
}
 .benefits-image {
     position: relative;
}
 .card-showcase {
     width: 100%;
     filter: drop-shadow(0 20px 60px rgba(255, 0, 255, 0.3));
}
 .benefit-badge {
     position: absolute;
     background: rgba(20, 20, 30, 0.9);
     backdrop-filter: blur(10px);
     border: 1px solid var(--primary-color);
     border-radius: 50px;
     padding: 12px 25px;
     display: flex;
     align-items: center;
     gap: 10px;
     font-weight: 600;
     animation: float-badge 3s ease-in-out infinite;
}
 .benefit-badge i {
     color: var(--primary-color);
}
 .badge-1 {
     top: 10%;
     right: -10%;
     animation-delay: 0s;
}
 .badge-2 {
     top: 50%;
     right: -5%;
     animation-delay: 1s;
}
 .badge-3 {
     bottom: 10%;
     left: -10%;
     animation-delay: 2s;
}
 @keyframes float-badge {
     0%, 100% {
         transform: translateY(0);
    }
     50% {
         transform: translateY(-15px);
    }
}
 .benefit-list {
     display: flex;
     flex-direction: column;
     gap: 25px;
}
 .benefit-item {
     display: flex;
     gap: 20px;
     padding: 20px;
     background: rgba(20, 20, 30, 0.4);
     border-radius: 15px;
     border: 1px solid transparent;
     transition: all 0.3s ease;
}
 .benefit-item:hover {
     border-color: var(--primary-color);
     background: rgba(20, 20, 30, 0.6);
     transform: translateX(10px);
}
 .benefit-icon {
     flex-shrink: 0;
}
 .benefit-icon i {
     color: var(--primary-color);
     font-size: 1.8rem;
}
 .benefit-content h4 {
     font-family: 'Orbitron', sans-serif;
     font-size: 1.2rem;
     margin-bottom: 8px;
}
 .benefit-content p {
     color: var(--text-secondary);
}
 .how-it-works {
     padding: 100px 0;
}
 .steps-container {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 30px;
     margin-top: 60px;
}
 .step-card {
     background: var(--bg-card);
     backdrop-filter: blur(10px);
     border: 2px solid rgba(0, 240, 255, 0.2);
     border-radius: 25px;
     padding: 40px;
     text-align: center;
     flex: 1;
     max-width: 300px;
     position: relative;
     transition: all 0.3s ease;
}
 .step-card:hover {
     transform: translateY(-15px);
     border-color: var(--primary-color);
     box-shadow: var(--glow-cyan);
}
 .step-number {
     position: absolute;
     top: -20px;
     right: 20px;
     font-family: 'Orbitron', sans-serif;
     font-size: 3rem;
     font-weight: 900;
     background: var(--gradient-primary);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     opacity: 0.3;
}
 .step-icon {
     width: 100px;
     height: 100px;
     background: var(--gradient-secondary);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 25px;
     font-size: 2.5rem;
}
 .step-icon i {
     color: var(--text-primary);
}
 .step-title {
     font-family: 'Orbitron', sans-serif;
     font-size: 1.4rem;
     margin-bottom: 15px;
}
 .step-description {
     color: var(--text-secondary);
     line-height: 1.8;
}
 .step-arrow {
     font-size: 2rem;
     color: var(--primary-color);
     animation: arrow-pulse 2s ease-in-out infinite;
}
 @keyframes arrow-pulse {
     0%, 100% {
         opacity: 0.5;
         transform: translateX(0);
    }
     50% {
         opacity: 1;
         transform: translateX(10px);
    }
}
 .cta {
     padding: 100px 0;
     position: relative;
}
 .cta-content {
     text-align: center;
     padding: 80px 40px;
     background: var(--bg-card);
     backdrop-filter: blur(10px);
     border: 2px solid rgba(0, 240, 255, 0.2);
     border-radius: 30px;
     position: relative;
     overflow: hidden;
}
 .cta-content::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent 30%);
     animation: rotate 6s linear infinite;
     opacity: 0.1;
}
 @keyframes rotate {
     100% {
         transform: rotate(360deg);
    }
}
 .cta-title {
     font-family: 'Orbitron', sans-serif;
     font-size: 2.5rem;
     margin-bottom: 20px;
     position: relative;
     z-index: 1;
}
 .cta-subtitle {
     font-size: 1.2rem;
     color: var(--text-secondary);
     margin-bottom: 30px;
     position: relative;
     z-index: 1;
}
 .footer {
     background: var(--bg-darker);
     padding: 30px 0 30px;
     border-top: 1px solid rgba(0, 240, 255, 0.1);
}
 .footer-content {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 40px;
     margin-bottom: 40px;
}
 .footer-brand {
     display: flex;
     align-items: center;
     gap: 10px;
     font-family: 'Orbitron', sans-serif;
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 20px;
}
 .footer-brand i {
     color: var(--primary-color);
     font-size: 1.8rem;
}
 .footer-description {
     color: var(--text-secondary);
     margin-bottom: 25px;
     line-height: 1.8;
}
 .social-links {
     display: flex;
     gap: 15px;
}
 .social-link {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     border: 1px solid rgba(0, 240, 255, 0.3);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--text-secondary);
     text-decoration: none;
     transition: all 0.3s ease;
}
 .social-link:hover {
     border-color: var(--primary-color);
     color: var(--primary-color);
     background: rgba(0, 240, 255, 0.1);
     transform: translateY(-3px);
}
 .footer-title {
     font-family: 'Orbitron', sans-serif;
     margin-bottom: 20px;
     color: var(--text-primary);
}
 .footer-links {
     list-style: none;
}
 .footer-links li {
     margin-bottom: 12px;
}
 .footer-links a {
     color: var(--text-secondary);
     text-decoration: none;
     transition: all 0.3s ease;
}
 .footer-links a:hover {
     color: var(--primary-color);
     padding-left: 5px;
}
 .footer-bottom {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 0;
     border-top: 1px solid rgba(0, 240, 255, 0.1);
     color: var(--text-secondary);
}
 .payment-badges {
     display: flex;
     gap: 15px;
     font-size: 2rem;
}
 .payment-badges i {
     color: var(--text-secondary);
     transition: all 0.3s ease;
}
 .payment-badges i:hover {
     color: var(--primary-color);
     transform: scale(1.2);
}
 @media (max-width: 768px) {
     .auth-visual {
         order: initial !important;
    }
     .mobile-menu-btn {
         width: 40px;
         height: 40px;
    }
     .auth-title {
         font-size: 30px !important;
         line-height: 35px !important;
    }
     .auth-form {
         gap: 10px;
    }
     .modal-title {
         font-size: 20px !important;
    }
     .modal-header {
         padding: 20px 20px !important;
    }
     .otp-input {
         width: 40px !important;
         height: 45px !important;
    }
     .nav-menu {
         position: fixed;
         left: -100%;
         top: 70px;
         flex-direction: column;
         background: rgba(10, 10, 15, 0.98);
         width: 100%;
         text-align: center;
         transition: 0.3s;
         padding: 30px 0;
    }
     .nav-menu.active {
         left: 0;
    }
     .hamburger {
         display: flex;
    }
     .hero .container {
         grid-template-columns: 1fr;
         text-align: center;
    }
     .hero-title {
         font-size: 2.5rem;
    }
     .hero-buttons {
         justify-content: center;
         flex-wrap: wrap;
    }
     .hero-stats {
         justify-content: center;
    }
     .benefits-content {
         grid-template-columns: 1fr;
    }
     .steps-container {
         flex-direction: column;
    }
     .step-arrow {
         transform: rotate(90deg);
    }
     .footer-content {
         grid-template-columns: 1fr;
    }
     .footer-bottom {
         flex-direction: column;
         gap: 20px;
    }
}
 .section-header-v2 {
     margin: 0 0 50px 0 !important;
}
 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.8);
     backdrop-filter: blur(5px);
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 9999;
     animation: fadeIn 0.3s ease;
}
 .modal-overlay.active {
     display: flex;
}
 @keyframes fadeIn {
     from {
         opacity: 0;
    }
     to {
         opacity: 1;
    }
}
 .modal-content {
     background: rgba(20, 20, 30, 0.95);
     border: 1px solid rgba(0, 240, 255, 0.3);
     border-radius: 25px;
     width: 90%;
     max-width: 500px;
     max-height: 90vh;
     overflow-y: auto;
     animation: slideUp 0.3s ease;
}
 @keyframes slideUp {
     from {
         transform: translateY(50px);
         opacity: 0;
    }
     to {
         transform: translateY(0);
         opacity: 1;
    }
}
 .modal-header {
     padding: 25px 30px;
     border-bottom: 1px solid rgba(0, 240, 255, 0.1);
     display: flex;
     align-items: center;
     justify-content: space-between;
}
 .modal-title {
     font-family: 'Orbitron', sans-serif;
     font-size: 1.5rem;
     font-weight: 700;
     display: flex;
     align-items: center;
     gap: 12px;
}
 .modal-title i {
     color: var(--primary-color);
}
 .modal-close {
     background: rgba(255, 107, 107, 0.2);
     border: 1px solid rgba(255, 107, 107, 0.3);
     color: #ff6b6b;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     font-size: 1.2rem;
     cursor: pointer;
     transition: all 0.3s ease;
}
 .modal-close:hover {
     background: rgba(255, 107, 107, 0.3);
     transform: rotate(90deg);
}
 .modal-body {
     padding: 30px;
}
 .modal-description {
     color: var(--text-secondary);
     margin-bottom: 25px;
     text-align: center;
}
/* OTP Input */
 .otp-input-group {
     display: flex;
     gap: 10px;
     justify-content: center;
     margin-bottom: 20px;
}
 .otp-input {
     width: 50px;
     height: 60px;
     background: rgba(20, 20, 30, 0.6);
     border: 2px solid rgba(0, 240, 255, 0.3);
     border-radius: 10px;
     text-align: center;
     font-family: 'Orbitron', sans-serif;
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--text-primary);
     transition: all 0.3s ease;
}
 .otp-input:focus {
     outline: none;
     border-color: var(--primary-color);
     box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.2);
}
 .otp-hint {
     text-align: center;
     color: var(--text-secondary);
     font-size: 0.85rem;
     font-style: italic;
     margin-bottom: 25px;
}
 .modal-actions {
     display: flex;
     gap: 15px;
     margin-bottom: 15px;
}
 .btn-modal {
     flex: 1;
     padding: 12px 24px;
     border: none;
     border-radius: 25px;
     font-family: 'Rajdhani', sans-serif;
     font-weight: 700;
     font-size: 1rem;
     cursor: pointer;
     transition: all 0.3s ease;
}
 .btn-modal.btn-secondary {
     background: rgba(255, 107, 107, 0.2);
     color: #ff6b6b;
     border: 1px solid rgba(255, 107, 107, 0.3);
}
 .btn-modal.btn-secondary:hover {
     background: rgba(255, 107, 107, 0.3);
}
 .btn-modal.btn-primary {
     background: var(--gradient-primary);
     color: white;
}
 .btn-modal.btn-primary:hover {
     box-shadow: 0 5px 20px rgba(0, 240, 255, 0.4);
     transform: translateY(-2px);
}
 .resend-text {
     text-align: center;
     color: var(--text-secondary);
     font-size: 0.9rem;
}
 .resend-text a {
     color: var(--primary-color);
     text-decoration: none;
     font-weight: 600;
}
 .resend-text a:hover {
     text-decoration: underline;
}
 .text-danger {
     color: #f00;
     font-size: 14px;
     font-weight: 500;
     margin: 5px 5px;
     float: left;
}
 .transaction-table-wrapper {
     display: none;
}
 .transaction-table-wrapper.active {
     display: block;
}
 .tab-btn.active {
     background: #007bff;
     color: #fff;
}
 .tab-btn {
     border: none;
     padding: 8px 16px;
     margin-right: 5px;
     background: #f0f0f0;
     cursor: pointer;
     border-radius: 5px;
     transition: 0.3s;
}
 .tab-btn:hover {
     background: #007bff;
     color: #fff;
}
 .status.success {
     color: green;
     font-weight: 600;
}
 .status.pending {
     color: orange;
     font-weight: 600;
}
 