@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    height: 100vh;
    background-size: 1600% 100%;
    /* animation: animateBackground 220s linear infinite alternate; */
    font-family: Poppins, sans-serif;
    background-color: #134898;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

/* Content container to handle safe areas */
.content-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Footer elements with blur effect */
.footer-elements {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    pointer-events: none;
    z-index: 1000;
    background: linear-gradient(transparent, rgba(19, 72, 152, 0.8) 30%, rgba(19, 72, 152, 0.95) 70%, #134898 100%);
    padding-bottom: env(safe-area-inset-bottom);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.footer-elements > * {
    pointer-events: auto;
}

@keyframes animateBackground {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 25% 50%;
    }
    50% {
        background-position: 50% 50%;
    }
}

.tagline-cards {
    position: absolute;
    top: calc(6vw + env(safe-area-inset-top));
    left: 5vw;
    right: 5vw;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5vw;
    max-width: 90vw;
}

.tagline-card {
    flex: 1 1 min(260px, 100%);
    min-width: 220px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 18px 20px;
    color: #fff;
    font-weight: 400;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    line-height: 1.3;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.tagline-card u {
    font-weight: 600;
    color: #fff;
    text-decoration-color: #fff;
}

@media (max-width: 768px) {
    .tagline-cards {
        flex-direction: column;
        gap: 16px;
    }
}
