.topnav,
.footer-bar,
.center-box {
    position: relative;
    z-index: 2;
}

.page-wrap {
    min-height: calc(100vh - 130px);
    display: flex;
    flex-direction: column;
}

.content-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
	transform: translateY(-20px); /*Boxhöhe*/
    padding: 10px;
}

.content-box {
		min-height: 90vh;
    display: flex;
    flex-direction: column;
}

.center-box {
    width: 90%;
    max-width: 850px;
    margin: 0 auto;
    padding: 25px 25px;
    text-align: center;

background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.60)
);

box-shadow:
    0 0 20px rgba(0, 0, 0, 0.6),
    0 0 28px rgba(255, 79, 216, 0.06),
    0 0 48px rgba(0, 229, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 0 14px rgba(255, 255, 255, 0.04),
        0 0 28px rgba(255, 79, 216, 0.06),
        0 0 48px rgba(0, 229, 255, 0.05);
}

.center-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 79, 216, 0.82),
        rgba(0, 229, 255, 0.88),
        transparent
    );

    box-shadow:
        0 0 10px rgba(255, 79, 216, 0.20),
        0 0 16px rgba(0, 229, 255, 0.16);
}
