        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

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

        body {
            background: #000000;
            background-image:
                radial-gradient(circle at 20% 20%, rgba(51, 181, 229, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(51, 181, 229, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(51, 181, 229, 0.05) 0%, transparent 50%);
            color: #ffffff;
            font-family: 'Roboto', sans-serif;
            font-size: 14px;
            line-height: 1.4;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
        }

        .header {
            position: relative;
            margin-bottom: 40px;
            padding: 20px 0;
        }

        .title_container {
            position: relative;
            display: inline-block;
        }

        .title {
            font-size: 48px;
            font-weight: 300;
            color: #33b5e5;
            text-shadow: 0 0 20px rgba(51, 181, 229, 0.8);
            margin: 0;
            font-family: 'Roboto', sans-serif;
        }

        .splash_text {
            position: absolute;
            top: 35px;
            left: 280px;
            color: #99cc00;
            font-size: 14px;
            font-weight: 400;
            transform: rotate(-25deg);
            text-shadow: 0 0 10px rgba(153, 204, 0, 0.8);
        }


        .nav_bar {
            background: linear-gradient(to bottom, #1e1e1e, #0a0a0a);
            border: 1px solid #33b5e5;
            border-radius: 0;
            box-shadow:
                0 0 0 1px rgba(51, 181, 229, 0.3),
                0 0 20px rgba(51, 181, 229, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-around;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .nav_button {
            background: linear-gradient(to bottom, #454545, #1a1a1a);
            color: #33b5e5;
            border: none;
            padding: 15px 25px;
            text-decoration: none;
            font-family: 'Roboto', sans-serif;
            font-weight: 400;
            font-size: 16px;
            transition: all 0.2s ease;
            position: relative;
            flex: 1;
            text-align: center;
            border-right: 1px solid #333;
        }

        .nav_button:last-child {
            border-right: none;
        }

        .nav_button:hover {
            background: linear-gradient(to bottom, #33b5e5, #1a7a96);
            color: #ffffff;
            box-shadow:
                inset 0 0 20px rgba(51, 181, 229, 0.3),
                0 0 10px rgba(51, 181, 229, 0.5);
        }

        .nav_button:active {
            background: linear-gradient(to bottom, #1a7a96, #33b5e5);
            box-shadow:
                inset 0 2px 10px rgba(0, 0, 0, 0.5),
                0 0 5px rgba(51, 181, 229, 0.8);
        }

        .content_section {
            background: linear-gradient(to bottom, #1e1e1e, #0f0f0f);
            border: 1px solid #33b5e5;
            border-radius: 2px;
            box-shadow:
                0 0 0 1px rgba(51, 181, 229, 0.2),
                0 0 15px rgba(51, 181, 229, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            padding: 25px;
            margin-bottom: 25px;
            position: relative;
        }

        .section_title {
            font-size: 20px;
            font-weight: 300;
            color: #33b5e5;
            margin-bottom: 20px;
            text-align: left;
            text-shadow: 0 0 10px rgba(51, 181, 229, 0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .features_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        .feature_box {
            background: linear-gradient(to bottom, #2a2a2a, #151515);
            border: 1px solid #33b5e5;
            border-radius: 2px;
            padding: 20px;
            text-align: center;
            box-shadow:
                0 0 0 1px rgba(51, 181, 229, 0.2),
                0 0 10px rgba(51, 181, 229, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .feature_box:hover {
            transform: translateY(-2px);
            box-shadow:
                0 0 0 1px rgba(51, 181, 229, 0.4),
                0 0 20px rgba(51, 181, 229, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .feature_title {
            font-weight: 500;
            margin-bottom: 12px;
            color: #33b5e5;
            font-size: 16px;
            text-shadow: 0 0 5px rgba(51, 181, 229, 0.5);
        }

        .screenshot_gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 25px 0;
        }

        .screenshot_box {
            aspect-ratio: 16/10;
            background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
            border: 1px solid #33b5e5;
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #33b5e5;
            box-shadow:
                0 0 0 1px rgba(51, 181, 229, 0.2),
                0 0 10px rgba(51, 181, 229, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .screenshot_box:hover {
            box-shadow:
                0 0 0 1px rgba(51, 181, 229, 0.4),
                0 0 20px rgba(51, 181, 229, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .download_section {
            background: linear-gradient(to bottom, #33b5e5, #1a7a96);
            border: 1px solid #33b5e5;
            border-radius: 2px;
            padding: 35px;
            text-align: center;
            box-shadow:
                0 0 0 1px rgba(51, 181, 229, 0.3),
                0 0 30px rgba(51, 181, 229, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }



        .download_button {
            background: linear-gradient(to bottom, #454545, #1a1a1a);
            color: #33b5e5;
            border: 1px solid #33b5e5;
            border-radius: 2px;
            padding: 18px 35px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            margin: 10px;
            font-family: 'Roboto', sans-serif;
            box-shadow:
                0 0 0 1px rgba(51, 181, 229, 0.2),
                0 0 10px rgba(51, 181, 229, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.2s ease;
            position: relative;
            z-index: 1;
        }

        .download_button:hover {
            background: linear-gradient(to bottom, #33b5e5, #1a7a96);
            color: #ffffff;
            box-shadow:
                0 0 0 1px rgba(51, 181, 229, 0.4),
                0 0 20px rgba(51, 181, 229, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transform: translateY(-1px);
        }

        .download_button:active {
            transform: translateY(0);
            box-shadow:
                0 0 0 1px rgba(51, 181, 229, 0.6),
                0 0 5px rgba(51, 181, 229, 0.5),
                inset 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        .blue_text {
            color: #33b5e5;
            text-shadow: 0 0 10px rgba(51, 181, 229, 0.5);
        }

        .glow_text {
            animation: text_glow 2s ease-in-out infinite alternate;
        }

        @keyframes text_glow {
            0% { text-shadow: 0 0 10px rgba(51, 181, 229, 0.5); }
            100% { text-shadow: 0 0 20px rgba(51, 181, 229, 0.8); }
        }

        .requirements_table {
            background: linear-gradient(to bottom, #2a2a2a, #151515);
            border: 1px solid #33b5e5;
            border-radius: 2px;
            padding: 20px;
            margin: 20px 0;
            box-shadow:
                0 0 0 1px rgba(51, 181, 229, 0.2),
                0 0 10px rgba(51, 181, 229, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .requirements_table h4 {
            color: #33b5e5;
            margin-bottom: 10px;
            font-weight: 500;
            text-shadow: 0 0 5px rgba(51, 181, 229, 0.5);
        }

        .requirements_table ul {
            list-style: none;
            padding-left: 0;
        }

        .requirements_table li {
            padding: 5px 0;
            border-bottom: 1px solid rgba(51, 181, 229, 0.1);
        }

        .requirements_table li:last-child {
            border-bottom: none;
        }

        .requirements_table li::before {
            content: '▶ ';
            color: #33b5e5;
            font-weight: bold;
        }

        .footer {
            text-align: center;
            margin-top: 40px;
            padding: 25px;
            border-top: 1px solid #33b5e5;
            background: linear-gradient(to bottom, #1a1a1a, #0f0f0f);
            border-radius: 2px;
            box-shadow:
                0 0 0 1px rgba(51, 181, 229, 0.1),
                0 0 10px rgba(51, 181, 229, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.02);
            font-size: 12px;
            color: #888;
        }

        @media (max-width: 768px) {
            .container {
                max-width: 100%;
                padding: 15px;
            }

            .title {
                font-size: 36px;
            }

            .splash_text {
                left: 220px;
                font-size: 12px;
            }

            .nav_bar {
                flex-direction: column;
            }

            .nav_button {
                border-right: none;
                border-bottom: 1px solid #333;
            }

            .nav_button:last-child {
                border-bottom: none;
            }

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

        .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #33b5e5, transparent);
            margin: 20px 0;
            box-shadow: 0 0 5px rgba(51, 181, 229, 0.3);
        }

