html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100vw;
    overscroll-behavior: none;
    touch-action: none;
    font-family: 'Inter', system-ui, sans-serif;
    color: #fff;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    min-width: 100vw;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: no-repeat center center fixed;
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s;
}

.center-container {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 40px 32px;
    text-align: center;
    max-width: 350px;
    width: 90vw;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeInCenter 1.2s ease 0.1s forwards;
}

@keyframes fadeInCenter {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.logo {
    max-width: 300px;
    object-fit: contain;
}

.coming-soon {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #fff;
}

.copyrights {
    font-size: 0.7rem;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    white-space: nowrap;
}

@media (max-width: 600px) {
    body {
        background-image: url('golarena_mob_9_16.png');
    }
}

@media (min-width: 601px) {
    body {
        background-image: url('golarena_web_16_9.png');
    }
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}