body,
html {
    height: 100%;
    margin: 0;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0d0d0d; /* A fallback background */
}

.gradient-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        115deg,
        #06033f 10%,
        #350a41 40%,
        #440929 70%,
        #210c4e 100%
    );
    background-size: 200% 200%;
    animation: gradientMove 8s ease-in-out infinite; /* Reduced duration for faster animation */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.blur-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px); /* Apply a stronger blur */
    opacity: 0.2; /* Increased opacity for a more pronounced effect */
    pointer-events: none; /* Ensure the blur layer doesn't interfere with interactions */
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
