        /* Basic Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica Neue', sans-serif;
            background-color: #0d0221;
            color: #fff;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Header */
        header {
            background-color: #1c0038;
            padding: 20px 40px;
            text-align: left;
            background-image: url('https://cdn.astrasystems.xyz/backgrounds/galaxy-bg.jpg');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }

        header img {
            max-width: 120px;
        }

        header h1 {
            font-size: 3em;
            margin-left: 20px;
            color: #fff;
        }

        /* Section Divider */
        .divider {
            width: 100%;
            height: 5px;
            background-color: black;
            margin: 0;
        }

        /* Main Section Styles */
        section {
            display: grid;
            justify-items: center;
            padding: 80px 20px;
            background-color: #120033;
            text-align: center;
            opacity: 0.030;
            transition: opacity 1s ease, filter 0.5s ease;
            filter: blur(2px);
        }

        section.visible {
            opacity: 1;
            filter: blur(0px);
        }

        h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }

        p {
            font-size: 1.3em;
            margin-bottom: 40px;
            line-height: 1.7;
            max-width: 700px;
        }

        /* Plan Section */
        #plan {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px;
        }

        #plan h2 {
            font-size: 3em;
            margin-bottom: 40px;
            text-align: center;
            color: #f39c12;
        }

        #plan .columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            width: 100%;
            max-width: 1000px;
        }

        ol {
            text-align: left;
            font-size: 1.3em;
            color: #ddd;
            padding: 0 20px;
        }

        ol li {
            margin: 15px 0;
            padding: 10px;
            border-left: 4px solid #f39c12;
            padding-left: 15px;
            background: #1a0033;
            border-radius: 8px;
        }

        /* Call to Action Button */
        .cta-button {
            margin-top: 40px;
            padding: 15px 30px;
            font-size: 1.5em;
            border: 2px solid #f39c12;
            color: #f39c12;
            background-color: transparent;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
            border-radius: 8px;
        }

        .cta-button:hover {
            background-color: #f39c12;
            color: #120033;
        }

        /* Footer */
        footer {
            background-color: #1c0038;
            color: #bbb;
            padding: 20px;
            text-align: center;
        }

        footer p {
            font-size: 1em;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        footer p:hover {
            opacity: 1;
        }

        /* Login Form Styles */
        .login-container {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            text-align: center;
            backdrop-filter: blur(10px); /* Blur effect */
        }

        .login-container h2 {
            margin-bottom: 20px;
            color: #f39c12;
        }

        .login-container input[type="text"],
        .login-container input[type="password"] {
            width: calc(100% - 20px);
            padding: 10px;
            margin-bottom: 15px;
            border: none;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.2); /* Slightly transparent background */
            color: #fff;
            font-size: 1em;
        }

        .login-container input[type="submit"] {
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 8px;
            background: #f39c12;
            color: #120033;
            font-size: 1em;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .login-container input[type="submit"]:hover {
            background: #e68a00;
        }