/* body::before {
    content: "";
    position: fixed;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;

    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
    animation: moveBg 10s linear infinite;

    z-index: -1;
}

@keyframes moveBg {
    0% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
    100% { transform: translate(0, 0); }
}



body {
    margin: 0;
    height: 100vh;
    overflow: hidden;
    font-family: Arial, sans-serif;
}


.bg-effect {
    position: fixed;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.15), transparent 40%),
                linear-gradient(135deg, #245fc3, #3a7bd5, #00d2ff);
    z-index: -1;
    transition: background 0.1s;
}


.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    top: 40%;
} */


body {
    margin: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #245fc3, #3a7bd5, #00d2ff);
    position: relative;
}

/* Glow layer */
.bg-glow {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Wave animation */
.wave {
    position: fixed;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 60%);
    animation: waveMove 10s infinite linear;
    z-index: 1;
}

@keyframes waveMove {
    0% { transform: translate(-10%, -10%) rotate(0deg); }
    50% { transform: translate(-5%, -5%) rotate(180deg); }
    100% { transform: translate(-10%, -10%) rotate(360deg); }
}

/* Content */
.content {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
    top: 40%;
}

.pageContentBody {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.contentHeader {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 28px;
    text-align: center;
}
.contentHeader img {
    max-width: 120px;
    margin-bottom: 25px;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.46));
}
.contentHeader h1, 
.contentHeader h2 {
    font-size: 24px;
    color: #fff;
    margin: 0 0 10px;
    text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}
.contentHeader h2 {
    font-size: 18px;
    margin: 0 0 7px;
}
.contentHeader h3, 
.contentHeader h4 {
    font-size: 26px;
    color: #fff;
    margin: 0 0 26px;
    line-height: 30px;
    text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}
.contentHeader h4 {
    font-size: 18px;
}
.contentLink {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
}
.contentLink a {
    background: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid #fff;
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 16%);
}
.contentLink a:hover {
    background: #7aff2a;
    border: 2px solid #ff2ab6;
}