* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #000000;
            font-family: 'JetBrains Mono', monospace;
            color: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container-fluid {
            padding: 0;
        }

        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 1rem;
        }

        .ascii-art {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.4rem;
            line-height: 1;
            color: #ffffff;
            white-space: pre;
            text-align: center;
            margin-bottom: 2rem;
        }

        .main-content {
            background: #000000;
            border: 1px solid #ffffff;
            padding: 2rem 1.5rem;
            max-width: 800px;
            text-align: center;
        }

        .brand-title {
            font-size: 3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
            font-family: 'JetBrains Mono', monospace;
        }

        .brand-subtitle {
            font-size: 1.2rem;
            color: #ffffff;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .brand-tagline {
            font-size: 1rem;
            color: #ffffff;
            margin-bottom: 2rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .status-badge {
            display: inline-block;
            background: #ffffff;
            color: #000000;
            padding: 0.8rem 1.5rem;
            border: 1px solid #ffffff;
            font-weight: 600;
            font-size: 1rem;
            margin: 1rem 0;
            text-transform: uppercase;
        }

        .description {
            margin: 1.5rem 0;
            font-size: 1rem;
            line-height: 1.6;
            color: #ffffff;
        }

        .nav-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .nav-link {
            background: #000000;
            border: 1px solid #ffffff;
            color: #ffffff;
            text-decoration: none;
            padding: 1rem 2rem;
            font-weight: 500;
            display: inline-block;
            text-transform: uppercase;
        }

        .nav-link:hover {
            background: #ffffff;
            color: #000000;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-content {
                margin: 1rem;
                padding: 1.5rem 1rem;
            }

            .brand-title {
                font-size: 2rem;
            }

            .brand-subtitle {
                font-size: 1rem;
            }

            .brand-tagline {
                font-size: 0.8rem;
            }

            .ascii-art {
                font-size: 0.3rem;
            }

            .nav-links {
                flex-direction: column;
                align-items: center;
            }

            .nav-link {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .brand-title {
                font-size: 1.5rem;
            }

            .ascii-art {
                font-size: 0.25rem;
            }
        }