
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: radial-gradient(circle at center, #0f2b48 0%, #051329 100%);
            color: #ffffff;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            position: relative;
        }

        /* Subtle Background Tech Graphics to match the IT vibe */
        body::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background-image: 
                radial-gradient(rgba(0, 180, 216, 0.1) 1px, transparent 0),
                radial-gradient(rgba(0, 180, 216, 0.05) 2px, transparent 0);
            background-size: 40px 40px, 80px 80px;
            animation: backgroundMove 120s linear infinite;
            z-index: 1;
        }

        @keyframes backgroundMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-50%, -50%); }
        }

        /* Main Container */
        .container {
            text-align: center;
            padding: 2rem;
            max-width: 600px;
            width: 100%;
            z-index: 2;
            position: relative;
        }

        /* Logo Placeholder Styling */
        .logo-container {
            margin-bottom: 3rem;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }


        .logo img {
            height: 130px;
        }


        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #00b4d8, #0077b6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(0, 180, 216, 0.3);
        }

        /* Temporary structural SVG icon simulating the Meridian logo shapes */
        .logo-icon svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: #ffffff;
        }

        .logo-text span {
            color: #00b4d8;
            font-weight: 400;
            font-size: 0.9rem;
            display: block;
            margin-top: -2px;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        /* Content Styles */
        h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -1px;
            background: linear-gradient(to right, #ffffff, #cfd8dc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
        }

        p {
            font-size: 1.1rem;
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 2.5rem;
        }

        /* Decorative Progress/Loading Indicator */
        .loader-bar {
            width: 100%;
            max-width: 300px;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            margin: 0 auto 2rem auto;
            overflow: hidden;
            position: relative;
        }

        .loader-progress {
            width: 45%;
            height: 100%;
            background: linear-gradient(to right, #00b4d8, #00f5d4);
            border-radius: 10px;
            position: absolute;
            animation: pulse 2.5s ease-in-out infinite alternate;
        }

        @keyframes pulse {
            0% { left: 0%; width: 20%; }
            100% { left: 80%; width: 20%; }
        }

        /* Footer */
        .footer {
            font-size: 0.85rem;
            color: #64748b;
            letter-spacing: 0.5px;
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            text-align: center;
            padding: 20px 0;
        }

        /* Responsive adjustments */
        @media (max-width: 575px) {
            .logo img {
            height: 80px;
        }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2.2rem; }
            p { font-size: 1rem; }
            .logo-text { font-size: 1.5rem; }
            .logo img {
            height: 80px;
        }
        }
