body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #1a1a2e; /* Dark background for contrast */
    color: #ffffff; /* White text by default */
    font-family: 'Open Sans', sans-serif;
    overflow: hidden; /* Prevent scrollbars */
}

.container {
    text-align: center;
    padding: 20px;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 5em; /* Large size */
    font-weight: 700;
    color: #ffffff; /* Base color for the text */
    text-shadow:
        0 0 10px #8a2be2, /* Light purple glow */
        0 0 20px #8a2be2,
        0 0 30px #8a2be2,
        0 0 40px #8a2be2,
        0 0 50px #9370DB, /* Slightly different purple for depth */
        0 0 60px #9370DB,
        0 0 70px #9932CC; /* Even deeper purple */
    animation: pulseGlow 2s infinite alternate; /* Subtle pulsing effect */
    margin-bottom: 10px;
    line-height: 1; /* Adjust line height */
}

.construction-message {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em; /* Smaller font */
    opacity: 0.8; /* Slightly less prominent */
}

@keyframes pulseGlow {
    from {
        text-shadow:
            0 0 10px #8a2be2,
            0 0 20px #8a2be2,
            0 0 30px #8a2be2,
            0 0 40px #8a2be2;
    }
    to {
        text-shadow:
            0 0 15px #8a2be2,
            0 0 25px #8a2be2,
            0 0 35px #8a2be2,
            0 0 45px #8a2be2,
            0 0 60px #9370DB,
            0 0 70px #9932CC;
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    h1 {
        font-size: 3em; /* Smaller on small screens */
    }
    .construction-message {
        font-size: 1em;
    }
}
