/* Ensure dark background */
        body {
            background-color: var(--color-bg-dark, #1d3557) !important;
            color: var(--color-text-cream, #f9f3ef) !important;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            overflow: hidden;
            opacity: 0;
            animation: FadeIn 1.5s forwards;
        }

        #bgCanvas {
            position: absolute;
            top: 0;
            left: 0;
            z-index: -2;
        }

         .logo {
    display: block;
    margin: 20px auto; 
    width: 200px; 
    height: 200px;
    object-fit: contain; 
    border-radius: 50%; 
}

        .main-heading {
            text-align: center;
            text-shadow: 0 0 10px var(--color-accent-light, #a8dadc);
            margin: 20px 0;
        }

        .red-orb {
            position: absolute;
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, var(--color-accent-light, #a8dadc), var(--color-bg-dark, #1d3557));
            border-radius: 50%;
            filter: blur(80px);
            animation: floatAndPulse 15s infinite ease-in-out alternate;
            z-index: -1;
        }

        .logo-line, .heading-line {
            height: 2px;
            background-color: var(--color-accent-light, #a8dadc);
            margin-bottom: 20px;
            transform-origin: center;
            animation: LineSlide 1s forwards 1s;
            opacity: 0;
        }

        .logo-line { width: 150px; }
        .heading-line { width: 80%; max-width: 600px; }

        @keyframes FadeIn { to { opacity: 1; } }
        @keyframes LineSlide { from { transform: scaleX(0); opacity: 0; } to { transform: scaleX(1); opacity: 1; } }
        @keyframes floatAndPulse {
            0% { transform: translateY(0px) scale(1); opacity: 0.4; }
            100% { transform: translateY(-50px) scale(1.2); opacity: 0.7; }
        }
