/* CSS Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Exo 2', sans-serif;
            line-height: 1.6;
            color: #e0e0ff;
            background: #0a0a1a;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(0, 40, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 200, 255, 0.05) 0%, transparent 50%);
            z-index: -1;
        }
        
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }
        
        .star {
            position: absolute;
            background-color: white;
            border-radius: 50%;
            animation: twinkle 5s infinite;
        }
        
        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }
        
        h1, h2, h3, h4 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #00d4ff, #8a2be2, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
        }
        
        h1 {
            font-size: 2.2rem;
            text-align: center;
            margin: 1rem 0 0.5rem 0;
            letter-spacing: 1px;
            animation: glow 3s ease-in-out infinite alternate;
        }
        
        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(0, 212, 255, 0.5); }
            to { text-shadow: 0 0 30px rgba(138, 43, 226, 0.5), 0 0 40px rgba(255, 0, 255, 0.3); }
        }
        
        h2 {
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 1rem;
            margin-top: 3rem;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #00d4ff, #8a2be2);
            border-radius: 2px;
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
        }
        
        h3 {
            font-size: 1.8rem;
            color: #00d4ff;
            margin-top: 2rem;
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #b0b0ff;
            line-height: 1.7;
        }
        
        a {
            text-decoration: none;
            color: #00d4ff;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: #ff00ff;
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation - FIXED */
        header {
            background: rgba(10, 10, 26, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 212, 255, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            position: relative;
        }
        
        .logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            position: relative;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.8rem;
            font-weight: 800;
            animation: float 6s ease-in-out infinite;
            margin-bottom: 0.5rem;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .logo-icon {
            font-size: 2.2rem;
            color: #00d4ff;
            filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.7));
            animation: spin 20s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .logo-text {
            background: linear-gradient(90deg, #00d4ff, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
            letter-spacing: 1px;
        }
        
        .page-title {
            font-size: 0.9rem;
            color: #b0b0ff;
            text-align: center;
            font-weight: 400;
            font-family: 'Exo 2', sans-serif;
            margin-top: 0;
            text-shadow: none;
            -webkit-text-fill-color: #b0b0ff;
            background: none;
        }
        
        /* Navigation - FIXED */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            margin-left: auto;
        }
        
        .nav-menu a {
            font-family: 'Orbitron', sans-serif;
            font-weight: 500;
            color: #b0b0ff;
            padding: 0.5rem 0.8rem;
            position: relative;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .nav-menu a:hover {
            color: #00d4ff;
            background: rgba(0, 212, 255, 0.1);
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #00d4ff, #ff00ff);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover:after {
            width: 80%;
        }
        
        /* Mobile Menu Button - FIXED */
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            color: #00d4ff;
            background: rgba(0, 212, 255, 0.1);
            padding: 0.5rem;
            border-radius: 4px;
            margin-left: 1rem;
            z-index: 1001;
        }
        
        /* Hero Section */
        .hero {
            background: radial-gradient(ellipse at center, rgba(0, 20, 40, 0.8) 0%, rgba(10, 10, 26, 0.9) 70%);
            padding: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(0, 212, 255, 0.2);
        }
        
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%2300d4ff" opacity="0.2"/></svg>');
            background-size: 200px;
            animation: moveStars 100s linear infinite;
            z-index: 0;
        }
        
        @keyframes moveStars {
            from { transform: translateY(0); }
            to { transform: translateY(-200px); }
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #c0c0ff;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #00d4ff, #8a2be2);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 25px rgba(0, 212, 255, 0.4);
            position: relative;
            overflow: hidden;
            letter-spacing: 1px;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.7s;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 35px rgba(0, 212, 255, 0.6);
            background: linear-gradient(90deg, #8a2be2, #ff00ff);
        }
        
        .btn:hover:before {
            left: 100%;
        }
        
        /* Main Content */
        main {
            padding: 3rem 0;
        }
        
        /* Section Text Styles */
        .section-text {
            background: rgba(20, 20, 40, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            border: 1px solid rgba(0, 212, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
                        inset 0 1px 0 rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .section-text:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.4);
        }
        
        
        
        /* Table Styles */
        .table {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(0, 212, 255, 0.2);
            position: relative;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
            background: rgba(15, 15, 35, 0.9);
        }
        
        th {
            background: linear-gradient(90deg, #001a33, #003366);
            color: #00d4ff;
            font-weight: 600;
            text-align: left;
            padding: 1rem;
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            border-bottom: 2px solid #00d4ff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        td {
            padding: 1rem;
            border-bottom: 1px solid rgba(0, 212, 255, 0.1);
            color: #c0c0ff;
            transition: all 0.3s ease;
        }
        
        tr {
            transition: all 0.3s ease;
        }
        
        tr:nth-child(even) {
            background-color: rgba(30, 30, 60, 0.5);
        }
        
        tr:hover {
            background-color: rgba(0, 212, 255, 0.1);
        }
        
        tr:hover td {
            color: white;
        }
        
        /* List Styles */
        ol, ul {
            margin: 1.5rem 0 1.5rem 2rem;
        }
        
        li {
            margin-bottom: 1rem;
            padding-left: 1rem;
            position: relative;
            color: #b0b0ff;
            line-height: 1.7;
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInFromLeft 0.6s forwards;
        }
        
        @keyframes slideInFromLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Stagger the animation for list items */
        li:nth-child(1) { animation-delay: 0.1s; }
        li:nth-child(2) { animation-delay: 0.2s; }
        li:nth-child(3) { animation-delay: 0.3s; }
        li:nth-child(4) { animation-delay: 0.4s; }
        li:nth-child(5) { animation-delay: 0.5s; }
        
        ol li {
            counter-increment: item;
            list-style-type: none;
            border-left: 3px solid #00d4ff;
            padding: 0.8rem 0 0.8rem 1.5rem;
            margin-bottom: 1rem;
            background: rgba(0, 212, 255, 0.05);
            border-radius: 0 8px 8px 0;
        }
        
        ol li:before {
            content: counter(item) ". ";
            color: #00d4ff;
            font-weight: 700;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.1rem;
            position: absolute;
            left: -2rem;
            top: 0.7rem;
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }
        
        ul li {
            list-style-type: none;
            padding-left: 2rem;
            position: relative;
        }
        
        ul li:before {
            content: '▸';
            color: #ff00ff;
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0;
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
            animation: pulse 2s infinite;
        }
        
        /* Features Section */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }
        
        .feature-card {
            background: linear-gradient(145deg, rgba(20, 20, 40, 0.8), rgba(10, 10, 30, 0.9));
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(0, 212, 255, 0.2);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
            border-color: rgba(0, 212, 255, 0.5);
        }
        
        .feature-card:hover:before {
            opacity: 1;
        }
        
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #00d4ff, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
            animation: bounce 3s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        /* Sidebar */
        aside {
            background: rgba(20, 20, 40, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 3rem;
            border: 1px solid rgba(0, 212, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        
        .sidebar-widget:last-child {
            margin-bottom: 0;
        }
        
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: #00d4ff;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(to bottom, rgba(10, 10, 26, 0.95), rgba(5, 5, 20, 1));
            color: #b0b0ff;
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(0, 212, 255, 0.2);
            position: relative;
        }
        
        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="0.5" fill="%2300d4ff" opacity="0.1"/></svg>');
            background-size: 300px;
            animation: moveStars 150s linear infinite;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }
        
        .footer-column h3 {
            color: #00d4ff;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #00d4ff, #ff00ff);
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .footer-links li:hover {
            opacity: 1;
            transform: translateX(5px);
        }
        
        .footer-links a {
            color: #b0b0ff;
            display: block;
            padding: 0.3rem 0;
            border-left: 2px solid transparent;
            padding-left: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #00d4ff;
            border-left: 2px solid #00d4ff;
            padding-left: 1rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(0, 212, 255, 0.1);
            border-radius: 50%;
            color: #00d4ff;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 212, 255, 0.3);
        }
        
        .social-links a:hover {
            background: linear-gradient(90deg, #00d4ff, #8a2be2);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.5);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 212, 255, 0.2);
            color: #8080cc;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }
        
        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #00d4ff, #8a2be2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 5px 25px rgba(0, 212, 255, 0.5);
            z-index: 999;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 35px rgba(0, 212, 255, 0.8);
            background: linear-gradient(135deg, #8a2be2, #ff00ff);
        }
        
        /* Responsive Design - FIXED MOBILE MENU */
        @media (max-width: 1100px) {
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                flex-direction: column;
                background: rgba(10, 10, 26, 0.98);
                backdrop-filter: blur(20px);
                width: 280px;
                height: 100vh;
                padding: 6rem 2rem 2rem 2rem;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
                transition: right 0.4s ease;
                z-index: 1000;
                border-left: 1px solid rgba(0, 212, 255, 0.2);
                margin: 0;
                overflow-y: auto;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin-bottom: 1rem;
                width: 100%;
            }
            
            .nav-menu a {
                display: block;
                padding: 1rem;
                border-radius: 8px;
                border: 1px solid rgba(0, 212, 255, 0.2);
                text-align: center;
                font-size: 1rem;
            }
            
            .logo-container {
                align-items: flex-start;
            }
            
            .logo {
                font-size: 1.5rem;
            }
            
            .logo-icon {
                font-size: 1.8rem;
            }
            
            .page-title {
                text-align: left;
                font-size: 0.8rem;
                margin-top: 0.2rem;
            }
            
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-text {
                padding: 1.8rem;
            }
            
            .scroll-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
            
            .features {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 1.5rem;
            }
            
            h2 {
                font-size: 1.6rem;
            }
            
            .hero {
                padding: 3rem 0;
            }
            
            .hero h2 {
                font-size: 1.6rem;
            }
            
            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
            
            .logo {
                font-size: 1.3rem;
            }
            
            .logo-icon {
                font-size: 1.6rem;
            }
        }