 * {
            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;
        }

        /* Pricing Toggle */
        .pricing-toggle {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
        }

        .toggle-btn {
            padding: 12px 30px;
            background: rgba(0, 20, 0, 0.6);
            border: 2px solid #00ff00;
            border-radius: 50px;
            color: #00ff00;
            cursor: pointer;
            font-family: 'Orbitron', monospace;
            transition: all 0.3s ease;
        }

        .toggle-btn.active {
            background: #00ff00;
            color: #000;
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
        }

        .toggle-btn:hover {
            transform: scale(1.05);
        }

        /* Pricing Grid */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .pricing-card {
            background: rgba(0, 20, 0, 0.6);
            backdrop-filter: blur(10px);
            border: 2px solid #00ff00;
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 40px rgba(0, 255, 0, 0.3);
            border-color: #00ffff;
        }

        .pricing-card.popular {
            border-color: #ff00ff;
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
            transform: scale(1.02);
        }

        .popular-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: #ff00ff;
            color: #000;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 12px;
            font-weight: bold;
            font-family: 'Orbitron', monospace;
        }

        .pricing-version {
            font-size: 32px;
            font-weight: bold;
            font-family: 'Orbitron', monospace;
            margin-bottom: 10px;
            text-align: center;
        }

        .pricing-price {
            font-size: 48px;
            font-weight: bold;
            margin: 20px 0;
            text-align: center;
            color: #00ff00;
        }

        .pricing-price span {
            font-size: 18px;
            color: #ccc;
        }

        .pricing-description {
            text-align: center;
            color: #ccc;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0, 255, 0, 0.2);
        }

        .pricing-features {
            list-style: none;
            margin: 30px 0;
        }

        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(0, 255, 0, 0.1);
            display: flex;
            align-items: center;
        }

        .pricing-features i {
            margin-right: 10px;
            width: 20px;
        }

        .feature-check {
            color: #00ff00;
        }

        .feature-times {
            color: #ff0000;
        }

        .buy-btn {
            display: block;
            text-align: center;
            padding: 15px;
            background: linear-gradient(135deg, #00ff00, #00cc00);
            color: #000;
            text-decoration: none;
            font-weight: bold;
            border-radius: 50px;
            margin-top: 30px;
            transition: all 0.3s ease;
            font-family: 'Orbitron', monospace;
        }

        .buy-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
        }

        /* Comparison Table */
        .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: 15px;
            text-align: left;
            border-bottom: 1px solid rgba(0, 255, 0, 0.2);
        }

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

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

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

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

        /* Volume Discounts */
        .volume-discounts {
            background: rgba(0, 20, 0, 0.4);
            border: 1px solid #00ff00;
            border-radius: 20px;
            padding: 40px;
            margin: 60px 0;
            text-align: center;
        }

        .discount-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .discount-card {
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid #00ff00;
            border-radius: 15px;
            padding: 20px;
        }

        .discount-percent {
            font-size: 36px;
            font-family: 'Orbitron', monospace;
            color: #00ff00;
        }

        /* FAQ Section */
        .faq-section {
            margin: 60px 0;
        }

        .faq-item {
            background: rgba(0, 20, 0, 0.4);
            border: 1px solid #00ff00;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(0, 255, 0, 0.1);
        }

        .faq-question h3 {
            margin: 0;
            font-size: 18px;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: #ccc;
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        /* 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;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            .comparison-table {
                font-size: 12px;
            }
            .nav-links {
                display: none;
            }
        }