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

        body {
            background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
            color: #00ff00;
            font-family: 'Share Tech Mono', monospace;
            overflow-x: hidden;
        }

        /* Matrix Rain Effect */
        #matrix-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.1;
            pointer-events: none;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #001000;
        }

        ::-webkit-scrollbar-thumb {
            background: #00ff00;
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #00cc00;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #00ff00;
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 30px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            font-family: 'Orbitron', monospace;
            background: linear-gradient(135deg, #00ff00, #00ffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: #00ff00;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #00ffff;
            text-shadow: 0 0 10px #00ffff;
        }

        .back-link {
            background: rgba(0, 255, 0, 0.1);
            padding: 8px 20px;
            border-radius: 50px;
            border: 1px solid #00ff00;
        }

        .back-link:hover {
            background: #00ff00;
            color: #000;
        }

        @keyframes glow {
            0%, 100% { text-shadow: 0 0 5px #00ff00; }
            50% { text-shadow: 0 0 20px #00ff00, 0 0 30px #00ffff; }
        }

        /* Main Content */
        .main-content {
            padding-top: 100px;
            min-height: 100vh;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* Header */
        .page-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInUp 0.8s ease;
        }

        .page-header h1 {
            font-size: 48px;
            font-family: 'Orbitron', monospace;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #00ff00, #00ffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .page-header p {
            color: #ccc;
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Version Timeline */
        .timeline {
            position: relative;
            padding: 40px 0;
            margin-bottom: 60px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #00ff00, #00ffff, #00ff00);
            box-shadow: 0 0 10px #00ff00;
        }

        .timeline-item {
            margin: 80px 0;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.1s; }
        .timeline-item:nth-child(2) { animation-delay: 0.2s; }
        .timeline-item:nth-child(3) { animation-delay: 0.3s; }
        .timeline-item:nth-child(4) { animation-delay: 0.4s; }
        .timeline-item:nth-child(5) { animation-delay: 0.5s; }
        .timeline-item:nth-child(6) { animation-delay: 0.6s; }

        .timeline-content {
            width: 45%;
            padding: 30px;
            background: rgba(0, 20, 0, 0.6);
            backdrop-filter: blur(10px);
            border: 2px solid #00ff00;
            border-radius: 20px;
            position: relative;
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
            border-color: #00ffff;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: #00ff00;
            border-radius: 50%;
            box-shadow: 0 0 10px #00ff00;
            z-index: 2;
        }

        .version-badge {
            display: inline-block;
            padding: 5px 15px;
            background: linear-gradient(135deg, #00ff00, #00cc00);
            color: #000;
            border-radius: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            font-family: 'Orbitron', monospace;
        }

        .version-date {
            color: #00ffff;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .version-title {
            font-size: 28px;
            font-family: 'Orbitron', monospace;
            margin-bottom: 15px;
        }

        .version-description {
            color: #ccc;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .feature-list {
            list-style: none;
            margin: 20px 0;
        }

        .feature-list li {
            padding: 8px 0;
            display: flex;
            align-items: center;
        }

        .feature-list i {
            margin-right: 10px;
            color: #00ff00;
        }

        .tech-stats {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 255, 0, 0.2);
        }

        .stat {
            background: rgba(0, 255, 0, 0.1);
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
        }

        /* Version Comparison Grid */
        .comparison-section {
            background: rgba(0, 20, 0, 0.4);
            border: 2px solid #00ff00;
            border-radius: 20px;
            padding: 40px;
            margin: 60px 0;
            overflow-x: auto;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid rgba(0, 255, 0, 0.2);
        }

        .comparison-table th {
            background: rgba(0, 255, 0, 0.1);
            font-family: 'Orbitron', monospace;
            font-weight: bold;
        }

        .comparison-table td:first-child {
            text-align: left;
            font-weight: bold;
            background: rgba(0, 255, 0, 0.05);
        }

        .comparison-table tr:hover {
            background: rgba(0, 255, 0, 0.05);
        }

        .check {
            color: #00ff00;
            font-size: 18px;
        }

        .partial {
            color: #ffff00;
            font-size: 18px;
        }

        .times {
            color: #ff0000;
            font-size: 18px;
        }

        /* Download Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .stat-card {
            background: rgba(0, 20, 0, 0.4);
            border: 1px solid #00ff00;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0, 255, 0, 0.2);
        }

        .stat-number {
            font-size: 48px;
            font-weight: bold;
            font-family: 'Orbitron', monospace;
            color: #00ff00;
        }

        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.95);
            border-top: 1px solid #00ff00;
            padding: 50px 30px 20px;
            margin-top: 50px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            color: #00ff00;
        }

        .footer-section a {
            color: #888;
            text-decoration: none;
            display: block;
            margin: 10px 0;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #00ff00;
        }

        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 255, 0, 0.2);
            color: #666;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 32px;
            }
            .timeline::before {
                left: 30px;
            }
            .timeline-content {
                width: calc(100% - 60px);
                margin-left: 60px !important;
            }
            .timeline-dot {
                left: 30px;
            }
            .comparison-table {
                font-size: 12px;
            }
            .nav-links {
                display: none;
            }
        }