.center-logo-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: clamp(4rem, 5.5vw, 6.5rem);
    pointer-events: none;
    width: 100%;
    height: auto;
    aspect-ratio: 1600 / 600;
    background-image: url('../img/logo-bg.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
    opacity: 0.3;
}

.center-logo-wrapper img {
    width: clamp(60px, 12vw, 170px);
    height: auto;
    filter: drop-shadow(0 0 35px rgba(255,255,255,0.15));
}

.slogan-left,
.slogan-right {
    position: absolute;
    top: 2.5rem;
    z-index: 35;
    pointer-events: none;
}

.slogan-left {
    right: calc(50% + min(8vw, 128px));
    text-align: right;
}

.slogan-right {
    left: calc(50% + min(8vw, 128px));
    text-align: left;
}

.slogan-heading {
    display: block;
    font-size: clamp(0.7rem, 1.2vw, 1.2rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3vw;
    line-height: 1.4;
}

.slogan-left .slogan-heading {
    color: #c49a2b;
}

.slogan-right .slogan-heading {
    color: #b44dff;
}

.slogan-details {
    display: block;
    font-size: clamp(0.5rem, 0.9vw, 0.9rem);
    font-weight: 400;
    letter-spacing: 0.2vw;
    line-height: 1.6;
    opacity: 0.6;
    margin-top: 0.6rem;
}

.slogan-left .slogan-details {
    color: #b8a45a;
}

.slogan-right .slogan-details {
    color: #a080d0;
}