/* CSS Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #00d9ff;
            --primary-glow: rgba(0, 217, 255, 0.4);
            --secondary-color: #9d00ff;
            --accent-color: #ff0080;
            --terminal-green: #00ff9d;
            --matrix-green: #00ff41;
            --cyber-blue: #0066ff;
            --dark-bg: #0a0a14;
            --darker-bg: #050510;
            --card-bg: rgba(20, 20, 40, 0.7);
            --card-border: rgba(0, 217, 255, 0.2);
            --text-primary: #ffffff;
            --text-secondary: #a0a0c0;
            --text-glow: rgba(255, 255, 255, 0.8);
            --shadow: 0 0 20px rgba(0, 217, 255, 0.2);
            --shadow-hover: 0 0 30px rgba(0, 217, 255, 0.4);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --border-radius: 4px;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Exo 2', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--dark-bg);
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(0, 217, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(157, 0, 255, 0.05) 0%, transparent 20%);
            overflow-x: hidden;
            position: relative;
        }
        
        body:before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(90deg, var(--dark-bg) 1px, transparent 1px) 0 0 / 20px 20px,
                linear-gradient(var(--dark-bg) 1px, transparent 1px) 0 0 / 20px 20px;
            opacity: 0.1;
            pointer-events: none;
            z-index: -1;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        h1 {
            font-size: 3rem;
            color: var(--primary-color);
            text-shadow: 0 0 10px var(--primary-glow);
            position: relative;
            display: inline-block;
        }
        
        h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        
        h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            text-shadow: 0 0 8px var(--primary-glow);
            position: relative;
            padding-bottom: 0.8rem;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), transparent);
            border-radius: 2px;
        }
        
        h3 {
            font-size: 1.6rem;
            color: var(--terminal-green);
            text-shadow: 0 0 5px rgba(0, 255, 157, 0.3);
        }
        
        p {
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
            font-size: 1.1rem;
        }
        
        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
            position: relative;
        }
        
        a:hover {
            color: var(--terminal-green);
            text-shadow: 0 0 8px var(--primary-glow);
        }
        
        ul, ol {
            margin-bottom: 2rem;
            padding-left: 1.5rem;
        }
        
        li {
            margin-bottom: 0.8rem;
            color: var(--text-secondary);
            position: relative;
            padding-left: 0.5rem;
        }
        
        li:before {
            content: '›';
            position: absolute;
            left: -1rem;
            color: var(--primary-color);
        }
        
        /* Button Styles */
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), var(--cyber-blue));
            color: white;
            padding: 1rem 2.2rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow);
            font-family: 'Orbitron', sans-serif;
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.6s;
            z-index: -1;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            background: linear-gradient(135deg, var(--terminal-green), var(--primary-color));
        }
        
        .btn:hover:before {
            left: 100%;
        }
        
        .btn-secondary {
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
        }
        
        .btn-secondary:hover {
            background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
        }
        
        .btn-accent {
            background: linear-gradient(135deg, var(--terminal-green), var(--matrix-green));
            color: var(--dark-bg);
        }
        
        .btn-accent:hover {
            background: linear-gradient(135deg, var(--matrix-green), var(--terminal-green));
        }
        
        /* Header & Navigation */
        header {
            background-color: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
        }
        
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .logo-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            animation: glitch 3s infinite, pulse 2s infinite;
            position: relative;
        }
        
        @keyframes glitch {
            0%, 100% { transform: translate(0); }
            1% { transform: translate(-2px, 2px); }
            2% { transform: translate(-2px, -2px); }
            3% { transform: translate(2px, 2px); }
            4% { transform: translate(2px, -2px); }
            5% { transform: translate(0); }
        }
        
        @keyframes pulse {
            0% { 
                text-shadow: 0 0 5px var(--primary-color), 
                           0 0 10px var(--primary-color), 
                           0 0 15px var(--primary-color);
            }
            50% { 
                text-shadow: 0 0 10px var(--primary-color), 
                           0 0 20px var(--primary-color), 
                           0 0 30px var(--primary-color),
                           0 0 40px var(--secondary-color);
            }
            100% { 
                text-shadow: 0 0 5px var(--primary-color), 
                           0 0 10px var(--primary-color), 
                           0 0 15px var(--primary-color);
            }
        }
        
        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color);
            letter-spacing: 2px;
            text-shadow: 0 0 10px var(--primary-glow);
        }
        
        .logo-subtext {
            font-size: 0.7rem;
            color: var(--terminal-green);
            letter-spacing: 3px;
            font-family: 'Roboto Mono', monospace;
            margin-top: 0.2rem;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        
        .nav-menu li a {
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
            font-family: 'Exo 2', sans-serif;
            font-size: 1.1rem;
        }
        
        .nav-menu li a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--terminal-green);
            box-shadow: 0 0 5px var(--terminal-green);
            transition: var(--transition);
        }
        
        .nav-menu li a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: 1px solid var(--primary-color);
            border-radius: var(--border-radius);
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .mobile-menu-btn:hover {
            background-color: rgba(0, 217, 255, 0.1);
            box-shadow: 0 0 10px var(--primary-color);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(5, 5, 16, 0.9) 0%, rgba(15, 15, 35, 0.9) 100%);
            padding: 8rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
        }
        
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(157, 0, 255, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .hero-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease-out 0.2s both;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            animation: fadeInUp 1s ease-out 0.4s both;
        }
        
        /* Main Content */
        main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }
        
        /* Text Blocks with Animation */
        .text-block {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 3rem;
            margin-bottom: 4rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            border: 1px solid var(--card-border);
            position: relative;
            overflow: hidden;
        }
        
        .text-block:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 30%, rgba(0, 217, 255, 0.05) 100%);
            pointer-events: none;
        }
        
        .text-block.animated {
            opacity: 1;
            transform: translateY(0);
            animation: fadeInUp 0.8s ease-out;
        }
        
        .text-block:hover {
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 217, 255, 0.4);
            transform: translateY(-5px);
        }
        
        .text-block h2, .text-block h3 {
            margin-top: 0;
        }
        
        /* Table Styles */
        .table-container {
            overflow-x: auto;
            margin: 2.5rem 0;
            border-radius: var(--border-radius);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 217, 255, 0.2);
            position: relative;
        }
        
        .table-container:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, transparent 50%);
            pointer-events: none;
            border-radius: var(--border-radius);
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
            font-family: 'Roboto Mono', monospace;
        }
        
        thead {
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(157, 0, 255, 0.2));
        }
        
        th {
            padding: 1.2rem;
            text-align: left;
            font-weight: 600;
            color: var(--text-primary);
            border-bottom: 2px solid var(--primary-color);
            font-family: 'Exo 2', sans-serif;
        }
        
        tbody tr {
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            transition: var(--transition);
        }
        
        tbody tr:nth-child(even) {
            background-color: rgba(10, 10, 25, 0.5);
        }
        
        tbody tr:hover {
            background-color: rgba(0, 217, 255, 0.1);
            box-shadow: inset 0 0 20px rgba(0, 217, 255, 0.1);
        }
        
        td {
            padding: 1.2rem;
            color: var(--text-secondary);
        }
        
        /* List Animations */
        .text-block ol li, .text-block ul li {
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        
        .text-block.animated ol li, .text-block.animated ul li {
            opacity: 1;
            transform: translateX(0);
        }
        
        .text-block ol li:nth-child(1) { transition-delay: 0.1s; }
        .text-block ol li:nth-child(2) { transition-delay: 0.2s; }
        .text-block ol li:nth-child(3) { transition-delay: 0.3s; }
        .text-block ol li:nth-child(4) { transition-delay: 0.4s; }
        .text-block ol li:nth-child(5) { transition-delay: 0.5s; }
        
        .text-block ul li:nth-child(1) { transition-delay: 0.15s; }
        .text-block ul li:nth-child(2) { transition-delay: 0.25s; }
        .text-block ul li:nth-child(3) { transition-delay: 0.35s; }
        .text-block ul li:nth-child(4) { transition-delay: 0.45s; }
        .text-block ul li:nth-child(5) { transition-delay: 0.55s; }
        
        /* Features Section */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin: 5rem 0;
        }
        
        .feature-card {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            border: 1px solid var(--card-border);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
            transition: 0.6s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 217, 255, 0.4);
        }
        
        .feature-card:hover:before {
            left: 100%;
        }
        
        .feature-icon {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            text-shadow: 0 0 15px var(--primary-glow);
        }
        
        .feature-card h3 {
            margin-bottom: 1rem;
        }
        
        /* Sidebar */
        aside {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            margin: 4rem 0;
            box-shadow: var(--shadow);
            border: 1px solid var(--card-border);
        }
        
        .sidebar-widget {
            margin-bottom: 2.5rem;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
        }
        
        .sidebar-widget:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .sidebar-widget h3 {
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        
        /* Footer */
        footer {
            background-color: var(--darker-bg);
            color: var(--text-primary);
            padding: 5rem 2rem 2.5rem;
            border-top: 1px solid rgba(0, 217, 255, 0.1);
            position: relative;
        }
        
        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        
        .footer-column h3 {
            color: var(--primary-color);
            margin-bottom: 2rem;
            font-size: 1.3rem;
        }
        
        .footer-column ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-column ul li {
            margin-bottom: 1rem;
        }
        
        .footer-column ul li a {
            color: var(--text-secondary);
            transition: var(--transition);
            display: inline-block;
            padding: 0.3rem 0;
        }
        
        .footer-column ul li a:hover {
            color: var(--terminal-green);
            transform: translateX(5px);
        }
        
        .footer-column p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(0, 217, 255, 0.1);
            border-radius: var(--border-radius);
            color: var(--primary-color);
            transition: var(--transition);
            border: 1px solid rgba(0, 217, 255, 0.2);
        }
        
        .social-links a:hover {
            background-color: rgba(0, 217, 255, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 0 15px var(--primary-color);
        }
        
        .copyright {
            text-align: center;
            padding-top: 4rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(0, 217, 255, 0.1);
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-family: 'Roboto Mono', monospace;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--cyber-blue));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 0 20px var(--primary-color);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: linear-gradient(135deg, var(--terminal-green), var(--primary-color));
            transform: translateY(-5px);
            box-shadow: 0 0 30px var(--primary-color);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes scanline {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(100vh); }
        }
        
        /* Scanline Effect */
        .scanline {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(transparent, var(--terminal-green), transparent);
            box-shadow: 0 0 10px var(--terminal-green);
            z-index: 9999;
            pointer-events: none;
            opacity: 0.1;
            animation: scanline 8s linear infinite;
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            
            .header-container {
                padding: 1rem;
            }
            
            .nav-menu {
                gap: 2rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero {
                padding: 6rem 1.5rem;
            }
            
            .text-block {
                padding: 2.5rem;
            }
            
            .features {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 20, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: center;
                padding: 2rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                z-index: 999;
                border-bottom: 1px solid rgba(0, 217, 255, 0.2);
            }
            
            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .hero {
                padding: 5rem 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .text-block {
                padding: 2rem;
            }
            
            main {
                padding: 3rem 1rem;
            }
            
            .back-to-top {
                bottom: 30px;
                right: 30px;
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 576px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            
            .logo-text {
                font-size: 1.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .btn {
                padding: 0.9rem 1.8rem;
            }
            
            .features {
                grid-template-columns: 1fr;
            }
        }