
        /* Global Styles & Font Import */
        body {
            margin: 0;
            padding: 0;
            font-family: 'Montserrat', sans-serif;
            color: #ecf0f1; /* Light text color for contrast */
            /* Aesthetic Background: Dark overlay on a faint digital pattern/gradient */
            background-color: #1a1a2e; /* Deep blue/purple primary background */
            background-image: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            text-align: center;
            overflow: hidden; /* Hide potential scrollbars */
        }

        /* Container for the content */
        .cover-container {
            /*max-width: 800px;*/
            padding: 60px;
            background: rgba(255, 255, 255, 0.05); /* Very subtle translucent white background */
            backdrop-filter: blur(5px); /* Soft glass effect */
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle white border */
            animation: fadeIn 1.5s ease-out; /* Fade-in animation */
        }

        /* Logo/Branding */
        .logo-text {
            font-size: 1.8em;
            color: #00bcd4; /* Accent color: Cyan/Teal */
            margin-bottom: 5px;
            font-weight: 700;
            letter-spacing: 2px;
        }

        /* Primary Headline */
        h1 {
            font-size: 3.5em;
            margin: 0 0 10px 0;
            font-weight: 700;
            line-height: 1.1;
            
        }

        /* Sub-text / Value Proposition */
        p {
            font-size: 1.2em;
            line-height: 1.6;
            margin-bottom: 40px;
            color: #bdc3c7; /* Lighter grey for main text */
            font-weight: 400;
        }

        /* Call-to-Action Button */
        .cta-button {
            display: inline-block;
            padding: 18px 40px;
            font-size: 1.1em;
            font-weight: 700;
            color: #1a1a2e; /* Dark text on bright button */
            background-color: #00bcd4; /* Accent color */
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(0, 188, 212, 0.6);
            border: none;
        }

        .cta-button:hover {
            background-color: #00e5ff; /* Brighter accent on hover */
            transform: scale(1.05);
            box-shadow: 0 0 25px rgba(0, 229, 255, 0.8);
        }
        
        /* Keyframe Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .cover-container {
                padding: 40px 20px;
                margin: 20px;
            }
            h1 {
                font-size: 2.5em;
            }
            p {
                font-size: 1em;
            }
            .cta-button {
                padding: 15px 30px;
            }
        }