        /* COPYRIGHT SIGNATURE: Omkar R. Ghare | Front-End & Web Developer | Designed and Built January 2026 */
        /* ==================== CSS VARIABLES ==================== */
        :root {
            /* Dark Theme (Default) */
            --bg-primary: #0a0a0f;
            --bg-secondary: #12121a;
            --bg-tertiary: #1a1a25;
            --bg-card: rgba(26, 26, 37, 0.8);
            --text-primary: #ffffff;
            --text-secondary: #a0a0b0;
            --text-muted: #6b6b7b;
            --accent-primary: #6c5ce7;
            --accent-secondary: #00d4ff;
            --accent-tertiary: #ff6b9d;
            --gradient-1: linear-gradient(135deg, #6c5ce7 0%, #00d4ff 100%);
            --gradient-2: linear-gradient(135deg, #ff6b9d 0%, #6c5ce7 100%);
            --gradient-3: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
            --gradient-bg: radial-gradient(ellipse at top, #1a1a2e 0%, #0a0a0f 50%);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --shadow-color: rgba(108, 92, 231, 0.3);
            --glow-primary: 0 0 40px rgba(108, 92, 231, 0.5);
            --glow-secondary: 0 0 40px rgba(0, 212, 255, 0.5);
        }

        [data-theme="light"] {
            --bg-primary: #f8f9ff;
            --bg-secondary: #ffffff;
            --bg-tertiary: #eef0f8;
            --bg-card: rgba(255, 255, 255, 0.9);
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a5a;
            --text-muted: #8a8a9a;
            --accent-primary: #5b4cdb;
            --accent-secondary: #00b8d9;
            --accent-tertiary: #e84a7f;
            --gradient-bg: radial-gradient(ellipse at top, #e8ebff 0%, #f8f9ff 50%);
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(0, 0, 0, 0.1);
            --shadow-color: rgba(108, 92, 231, 0.2);
        }

        /* ==================== RESET & BASE ==================== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background 0.5s ease, color 0.5s ease;
        }

        body.loading {
            overflow: hidden;
        }

        /* ==================== PRELOADER ==================== */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-primary);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-content {
            text-align: center;
        }

        .preloader-cube {
            width: 100px;
            height: 100px;
            perspective: 500px;
            margin: 0 auto 30px;
        }

        .cube {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            animation: cubeRotate 3s infinite ease-in-out;
        }

        .cube-face {
            position: absolute;
            width: 100px;
            height: 100px;
            border: 2px solid var(--accent-secondary);
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 24px;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cube-face:nth-child(1) { transform: rotateY(0deg) translateZ(50px); }
        .cube-face:nth-child(2) { transform: rotateY(90deg) translateZ(50px); }
        .cube-face:nth-child(3) { transform: rotateY(180deg) translateZ(50px); }
        .cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(50px); }
        .cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(50px); }
        .cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(50px); }

        @keyframes cubeRotate {
            0%, 100% { transform: rotateX(-20deg) rotateY(0deg); }
            25% { transform: rotateX(-20deg) rotateY(90deg); }
            50% { transform: rotateX(-20deg) rotateY(180deg); }
            75% { transform: rotateX(-20deg) rotateY(270deg); }
        }

        .preloader-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: textPulse 1.5s infinite;
        }

        .preloader-bar {
            width: 200px;
            height: 4px;
            background: var(--bg-tertiary);
            border-radius: 2px;
            margin: 20px auto 0;
            overflow: hidden;
        }

        .preloader-progress {
            width: 0%;
            height: 100%;
            background: var(--gradient-1);
            border-radius: 2px;
            animation: loadProgress 2s ease-in-out forwards;
        }

        @keyframes loadProgress {
            0% { width: 0%; }
            50% { width: 70%; }
            100% { width: 100%; }
        }

        @keyframes textPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* ==================== NAVIGATION ==================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
            background: transparent;
        }

        .navbar.scrolled {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            padding: 10px 5%;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            transform-style: preserve-3d;
            animation: logoFloat 3s ease-in-out infinite;
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0) rotateY(0deg); }
            50% { transform: translateY(-5px) rotateY(10deg); }
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border: 3px solid white;
            border-radius: 4px;
            transform: rotate(45deg);
        }

        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 40px;
            list-style: none;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
            font-family: 'Rajdhani', sans-serif;
            letter-spacing: 0.5px;
        }

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

        .nav-link:hover {
            color: var(--text-primary);
        }

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

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .theme-toggle {
            width: 50px;
            height: 26px;
            background: var(--bg-tertiary);
            border-radius: 13px;
            position: relative;
            cursor: pointer;
            border: 2px solid var(--glass-border);
            transition: all 0.3s ease;
        }

        .theme-toggle::before {
            content: '🌙';
            position: absolute;
            left: 4px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 12px;
            transition: all 0.3s ease;
        }

        [data-theme="light"] .theme-toggle::before {
            content: '☀️';
            left: calc(100% - 20px);
        }

        .theme-toggle::after {
            content: '';
            position: absolute;
            width: 18px;
            height: 18px;
            background: var(--gradient-1);
            border-radius: 50%;
            top: 2px;
            left: 2px;
            transition: all 0.3s ease;
        }

        [data-theme="light"] .theme-toggle::after {
            left: calc(100% - 22px);
        }

        .btn {
            padding: 12px 28px;
            border-radius: 12px;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: var(--glow-primary);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(108, 92, 231, 0.5);
        }

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

        .btn-secondary:hover {
            background: var(--accent-primary);
            color: white;
        }

        .btn-glow {
            animation: btnGlow 2s infinite;
        }

        @keyframes btnGlow {
            0%, 100% { box-shadow: 0 0 20px rgba(108, 92, 231, 0.5); }
            50% { box-shadow: 0 0 40px rgba(108, 92, 231, 0.8), 0 0 60px rgba(0, 212, 255, 0.4); }
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* ==================== HERO SECTION ==================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 5% 80px;
            position: relative;
            overflow: hidden;
            background: var(--gradient-bg);
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .hero-particles {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent-secondary);
            border-radius: 50%;
            opacity: 0.5;
            animation: particleFloat 15s infinite;
        }

        @keyframes particleFloat {
            0%, 100% { 
                transform: translateY(100vh) translateX(0) scale(0);
                opacity: 0;
            }
            10% { opacity: 0.5; }
            90% { opacity: 0.5; }
            100% { 
                transform: translateY(-100vh) translateX(100px) scale(1);
                opacity: 0;
            }
        }

        .hero-grid {
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background-image: 
                linear-gradient(var(--glass-border) 1px, transparent 1px),
                linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
            background-size: 60px 60px;
            transform: perspective(500px) rotateX(60deg);
            animation: gridMove 20s linear infinite;
            opacity: 0.3;
        }

        @keyframes gridMove {
            0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
            100% { transform: perspective(500px) rotateX(60deg) translateY(60px); }
        }

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

        .hero-text h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-text h1 span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 30px;
            max-width: 500px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 500px;
        }

        .hero-3d-container {
            position: relative;
            width: 400px;
            height: 400px;
            perspective: 1000px;
        }

        .floating-cube {
            position: absolute;
            width: 150px;
            height: 150px;
            transform-style: preserve-3d;
            animation: floatCube 6s ease-in-out infinite;
        }

        .floating-cube:nth-child(1) {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 0s;
        }

        .floating-cube:nth-child(2) {
            top: 20%;
            left: 20%;
            width: 80px;
            height: 80px;
            animation-delay: -2s;
        }

        .floating-cube:nth-child(3) {
            bottom: 20%;
            right: 20%;
            width: 100px;
            height: 100px;
            animation-delay: -4s;
        }

        @keyframes floatCube {
            0%, 100% { 
                transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
            }
            25% { 
                transform: translate(-50%, -60%) rotateX(90deg) rotateY(90deg);
            }
            50% { 
                transform: translate(-50%, -50%) rotateX(180deg) rotateY(180deg);
            }
            75% { 
                transform: translate(-50%, -40%) rotateX(270deg) rotateY(270deg);
            }
        }

        .cube-face-hero {
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--glass-bg);
            border: 1px solid var(--accent-primary);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
        }

        .floating-cube:nth-child(1) .cube-face-hero:nth-child(1) { transform: rotateY(0deg) translateZ(75px); }
        .floating-cube:nth-child(1) .cube-face-hero:nth-child(2) { transform: rotateY(90deg) translateZ(75px); }
        .floating-cube:nth-child(1) .cube-face-hero:nth-child(3) { transform: rotateY(180deg) translateZ(75px); }
        .floating-cube:nth-child(1) .cube-face-hero:nth-child(4) { transform: rotateY(-90deg) translateZ(75px); }
        .floating-cube:nth-child(1) .cube-face-hero:nth-child(5) { transform: rotateX(90deg) translateZ(75px); }
        .floating-cube:nth-child(1) .cube-face-hero:nth-child(6) { transform: rotateX(-90deg) translateZ(75px); }

        .floating-cube:nth-child(2) .cube-face-hero:nth-child(1) { transform: rotateY(0deg) translateZ(40px); }
        .floating-cube:nth-child(2) .cube-face-hero:nth-child(2) { transform: rotateY(90deg) translateZ(40px); }
        .floating-cube:nth-child(2) .cube-face-hero:nth-child(3) { transform: rotateY(180deg) translateZ(40px); }
        .floating-cube:nth-child(2) .cube-face-hero:nth-child(4) { transform: rotateY(-90deg) translateZ(40px); }
        .floating-cube:nth-child(2) .cube-face-hero:nth-child(5) { transform: rotateX(90deg) translateZ(40px); }
        .floating-cube:nth-child(2) .cube-face-hero:nth-child(6) { transform: rotateX(-90deg) translateZ(40px); }

        .floating-cube:nth-child(3) .cube-face-hero:nth-child(1) { transform: rotateY(0deg) translateZ(50px); }
        .floating-cube:nth-child(3) .cube-face-hero:nth-child(2) { transform: rotateY(90deg) translateZ(50px); }
        .floating-cube:nth-child(3) .cube-face-hero:nth-child(3) { transform: rotateY(180deg) translateZ(50px); }
        .floating-cube:nth-child(3) .cube-face-hero:nth-child(4) { transform: rotateY(-90deg) translateZ(50px); }
        .floating-cube:nth-child(3) .cube-face-hero:nth-child(5) { transform: rotateX(90deg) translateZ(50px); }
        .floating-cube:nth-child(3) .cube-face-hero:nth-child(6) { transform: rotateX(-90deg) translateZ(50px); }

        .orbit-ring {
            position: absolute;
            border: 2px solid var(--glass-border);
            border-radius: 50%;
            animation: orbitRotate 20s linear infinite;
        }

        .orbit-ring:nth-child(4) {
            width: 300px;
            height: 300px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotateX(70deg);
        }

        .orbit-ring:nth-child(5) {
            width: 350px;
            height: 350px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotateX(70deg) rotateZ(60deg);
            animation-direction: reverse;
        }

        @keyframes orbitRotate {
            0% { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg); }
            100% { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg); }
        }

        .orbit-dot {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--gradient-1);
            border-radius: 50%;
            top: -6px;
            left: 50%;
            box-shadow: 0 0 20px var(--accent-primary);
        }

        /* ==================== SECTION STYLES ==================== */
        section {
            padding: 100px 5%;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-badge {
            display: inline-block;
            padding: 8px 20px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 30px;
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--accent-secondary);
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-title span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-desc {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        /* ==================== FEATURES SECTION ==================== */
        .features {
            background: var(--bg-secondary);
        }

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

        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            transform-style: preserve-3d;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .feature-card:hover {
            transform: translateY(-10px) rotateX(5deg);
            border-color: var(--accent-primary);
            box-shadow: 0 20px 40px var(--shadow-color);
        }

        .feature-card:hover::before {
            opacity: 0.05;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-1);
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
            transform-style: preserve-3d;
            animation: iconFloat 3s ease-in-out infinite;
        }

        @keyframes iconFloat {
            0%, 100% { transform: translateZ(0) rotateY(0deg); }
            50% { transform: translateZ(20px) rotateY(10deg); }
        }

        .feature-card:nth-child(2) .feature-icon { animation-delay: -0.5s; }
        .feature-card:nth-child(3) .feature-icon { animation-delay: -1s; }
        .feature-card:nth-child(4) .feature-icon { animation-delay: -1.5s; }
        .feature-card:nth-child(5) .feature-icon { animation-delay: -2s; }
        .feature-card:nth-child(6) .feature-icon { animation-delay: -2.5s; }

        .feature-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .feature-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }

        /* ==================== ABOUT SECTION ==================== */
        .about {
            background: var(--gradient-bg);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-visual {
            position: relative;
            height: 500px;
            perspective: 1000px;
        }

        .about-sphere {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: var(--gradient-1);
            opacity: 0.1;
            animation: spherePulse 4s ease-in-out infinite;
        }

        @keyframes spherePulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.1); }
        }

        .about-card {
            position: absolute;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 25px;
            animation: cardFloat 5s ease-in-out infinite;
        }

        .about-card:nth-child(2) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .about-card:nth-child(3) {
            top: 20%;
            right: 10%;
            animation-delay: -1s;
        }

        .about-card:nth-child(4) {
            bottom: 20%;
            left: 5%;
            animation-delay: -2s;
        }

        .about-card:nth-child(5) {
            bottom: 10%;
            right: 15%;
            animation-delay: -3s;
        }

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

        .about-card-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .about-card-title {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            font-size: 1rem;
        }

        .about-card-value {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-text h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 25px;
        }

        .about-text h2 span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-text p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .about-feature-icon {
            width: 50px;
            height: 50px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.3rem;
        }

        .about-feature-text {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            font-size: 1rem;
        }

        /* ==================== HOW IT WORKS ==================== */
        .how-it-works {
            background: var(--bg-secondary);
        }

        .steps-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .steps-line {
            position: absolute;
            top: 60px;
            left: 15%;
            width: 70%;
            height: 3px;
            background: var(--bg-tertiary);
        }

        .steps-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: var(--gradient-1);
            transition: width 1s ease;
        }

        .steps-line.animate::after {
            width: 100%;
        }

        .step-card {
            flex: 1;
            max-width: 280px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--bg-tertiary);
            border: 3px solid var(--accent-primary);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 25px;
            position: relative;
            transition: all 0.4s ease;
        }

        .step-card:hover .step-number {
            background: var(--gradient-1);
            transform: scale(1.1) rotateY(180deg);
        }

        .step-icon {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .step-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .step-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* ==================== TOKENOMICS ==================== */
        .tokenomics {
            background: var(--gradient-bg);
        }

        .tokenomics-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .token-chart {
            position: relative;
            width: 350px;
            height: 350px;
            margin: 0 auto;
        }

        .chart-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 20px solid;
        }

        .chart-ring:nth-child(1) {
            width: 350px;
            height: 350px;
            border-color: var(--accent-primary);
            clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 100%, 50% 100%);
            animation: chartRotate 20s linear infinite;
        }

        .chart-ring:nth-child(2) {
            width: 310px;
            height: 310px;
            border-color: var(--accent-secondary);
            clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 50%);
            animation: chartRotate 25s linear infinite reverse;
        }

        .chart-ring:nth-child(3) {
            width: 270px;
            height: 270px;
            border-color: var(--accent-tertiary);
            clip-path: polygon(50% 50%, 0% 50%, 0% 100%, 50% 100%);
            animation: chartRotate 30s linear infinite;
        }

        @keyframes chartRotate {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .chart-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            background: var(--bg-secondary);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border: 2px solid var(--glass-border);
        }

        .chart-center-value {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .chart-center-label {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .token-info h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .token-distribution {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .distribution-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .distribution-color {
            width: 16px;
            height: 16px;
            border-radius: 4px;
        }

        .distribution-label {
            flex: 1;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
        }

        .distribution-value {
            font-family: 'Orbitron', sans-serif;
            font-weight: 600;
            color: var(--accent-secondary);
        }

        .distribution-bar {
            width: 100px;
            height: 8px;
            background: var(--bg-tertiary);
            border-radius: 4px;
            overflow: hidden;
        }

        .distribution-fill {
            height: 100%;
            background: var(--gradient-1);
            border-radius: 4px;
            transition: width 1s ease;
        }

        /* ==================== ROADMAP ==================== */
        .roadmap {
            background: var(--bg-secondary);
        }

        .roadmap-timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            width: 3px;
            height: 100%;
            background: var(--bg-tertiary);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 50%;
            position: relative;
            margin-bottom: 50px;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: 50%;
        }

        .timeline-content {
            width: 90%;
            max-width: 450px;
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 30px;
            position: relative;
            transition: all 0.4s ease;
        }

        .timeline-content:hover {
            border-color: var(--accent-primary);
            box-shadow: 0 10px 30px var(--shadow-color);
            transform: translateY(-5px);
        }

        .timeline-dot {
            position: absolute;
            right: -66px;
            top: 30px;
            width: 30px;
            height: 30px;
            background: var(--gradient-1);
            border-radius: 50%;
            border: 4px solid var(--bg-secondary);
            z-index: 1;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            right: auto;
            left: -66px;
        }

        .timeline-date {
            display: inline-block;
            padding: 5px 15px;
            background: var(--gradient-1);
            border-radius: 20px;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            color: white;
            margin-bottom: 15px;
        }

        .timeline-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .timeline-list {
            list-style: none;
        }

        .timeline-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 10px;
        }

        .timeline-list li::before {
            content: '✓';
            color: var(--accent-secondary);
            font-weight: bold;
        }

        .timeline-status {
            display: inline-block;
            padding: 5px 15px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            font-size: 0.8rem;
            margin-top: 15px;
        }

        .timeline-status.completed {
            background: rgba(0, 255, 136, 0.1);
            border-color: #00ff88;
            color: #00ff88;
        }

        .timeline-status.in-progress {
            background: rgba(0, 212, 255, 0.1);
            border-color: var(--accent-secondary);
            color: var(--accent-secondary);
        }

        .timeline-status.upcoming {
            background: rgba(108, 92, 231, 0.1);
            border-color: var(--accent-primary);
            color: var(--accent-primary);
        }

        /* ==================== TEAM SECTION ==================== */
        .team {
            background: var(--gradient-bg);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-card {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(transparent, var(--accent-primary), transparent 30%);
            animation: teamCardBorder 4s linear infinite paused;
        }

        .team-card:hover::before {
            animation-play-state: running;
        }

        .team-card::after {
            content: '';
            position: absolute;
            inset: 2px;
            background: var(--bg-card);
            border-radius: 22px;
        }

        @keyframes teamCardBorder {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .team-card-content {
            position: relative;
            z-index: 1;
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            position: relative;
        }

        .team-avatar-img {
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 3rem;
            position: relative;
            z-index: 1;
        }

        .team-avatar-ring {
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px solid var(--accent-secondary);
            border-radius: 50%;
            animation: avatarRing 3s linear infinite;
        }

        @keyframes avatarRing {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .team-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .team-role {
            color: var(--accent-secondary);
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .team-bio {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .team-socials {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .team-social {
            width: 40px;
            height: 40px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .team-social:hover {
            background: var(--gradient-1);
            border-color: transparent;
            transform: translateY(-3px);
        }

        /* ==================== FAQ SECTION ==================== */
        .faq {
            background: var(--bg-secondary);
        }

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

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--accent-primary);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 30px;
            cursor: pointer;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .faq-icon {
            width: 30px;
            height: 30px;
            background: var(--glass-bg);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-icon span {
            display: block;
            width: 12px;
            height: 2px;
            background: var(--text-primary);
            position: relative;
        }

        .faq-icon span::after {
            content: '';
            position: absolute;
            width: 2px;
            height: 12px;
            background: var(--text-primary);
            left: 5px;
            top: -5px;
            transition: all 0.3s ease;
        }

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

        .faq-item.active .faq-icon span::after {
            opacity: 0;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            padding: 0 30px 25px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ==================== CTA SECTION ==================== */
        .cta {
            background: var(--gradient-bg);
            padding: 120px 5%;
        }

        .cta-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
        }

        .cta-bg {
            position: absolute;
            width: 500px;
            height: 500px;
            background: var(--gradient-1);
            border-radius: 50%;
            filter: blur(150px);
            opacity: 0.2;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .cta h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .cta h2 span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta p {
            color: var(--text-secondary);
            font-size: 1.2rem;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .cta-input-group {
            display: flex;
            gap: 10px;
            background: var(--bg-card);
            padding: 8px;
            border-radius: 16px;
            border: 1px solid var(--glass-border);
            margin-bottom: 30px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .cta-input-group input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 15px 20px;
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            outline: none;
        }

        .cta-input-group input::placeholder {
            color: var(--text-muted);
        }

        .cta-input-group .btn {
            flex-shrink: 0;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: var(--bg-tertiary);
            padding: 80px 5% 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto 60px;
        }

        .footer-brand {
            max-width: 350px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .footer-logo-icon::before {
            content: '';
            width: 20px;
            height: 20px;
            border: 3px solid white;
            border-radius: 4px;
            transform: rotate(45deg);
        }

        .footer-logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
        }

        .footer-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .footer-socials {
            display: flex;
            gap: 15px;
        }

        .footer-social {
            width: 45px;
            height: 45px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .footer-social:hover {
            background: var(--gradient-1);
            border-color: transparent;
            transform: translateY(-5px);
        }

        .footer-column h4 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .footer-links a:hover {
            color: var(--accent-secondary);
            transform: translateX(5px);
        }

        .footer-bottom {
            border-top: 1px solid var(--glass-border);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-copyright {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .footer-legal {
            display: flex;
            gap: 30px;
        }

        .footer-legal a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--accent-secondary);
        }

        /* ==================== SCROLL ANIMATIONS ==================== */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal-scale.active {
            opacity: 1;
            transform: scale(1);
        }

        /* ==================== RESPONSIVE DESIGN ==================== */
        @media (max-width: 1200px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text {
                order: 2;
            }

            .hero-visual {
                order: 1;
                min-height: 400px;
            }

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

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

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

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

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

        @media (max-width: 992px) {
            .nav-menu {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--bg-secondary);
                flex-direction: column;
                padding: 30px;
                gap: 20px;
                border-bottom: 1px solid var(--glass-border);
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-toggle {
                display: flex;
            }

            .nav-actions .btn {
                display: none;
            }

            .steps-container {
                flex-direction: column;
                align-items: center;
            }

            .steps-line {
                left: 50%;
                top: 0;
                width: 3px;
                height: 100%;
            }

            .timeline-item,
            .timeline-item:nth-child(even) {
                justify-content: center;
                padding: 0;
            }

            .timeline-content {
                margin-left: 50px;
            }

            .timeline-dot,
            .timeline-item:nth-child(even) .timeline-dot {
                left: -25px;
                right: auto;
            }

            .timeline-line {
                left: 25px;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 70px 5%;
            }

            .hero {
                padding: 100px 5% 60px;
            }

            .hero-3d-container {
                width: 300px;
                height: 300px;
            }

            .floating-cube:nth-child(1) {
                width: 100px;
                height: 100px;
            }

            .floating-cube:nth-child(2) {
                width: 50px;
                height: 50px;
            }

            .floating-cube:nth-child(3) {
                width: 70px;
                height: 70px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .about-visual {
                height: 350px;
            }

            .token-chart {
                width: 280px;
                height: 280px;
            }

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

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                flex-wrap: wrap;
                justify-content: center;
            }

            .cta-input-group {
                flex-direction: column;
            }

            .cta-input-group .btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }

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

            .hero-buttons .btn {
                width: 100%;
            }

            .feature-card {
                padding: 30px 20px;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ==================== CUSTOM SCROLLBAR ==================== */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-1);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-primary);
        }

        /* ==================== SELECTION ==================== */
        ::selection {
            background: var(--accent-primary);
            color: white;
        }
