body {
    margin: 0;
    background: #000;
    color: #fff;
    overflow: hidden;
    font-family: 'Nunito', 'Nunito Fallback';
}

.splash {
    position: fixed;
    inset: 0;
    background: #13141e;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;
}

.splash img {
    width: 180px;
    border-radius: 8px;
    border: 2px solid #f6b413;
}

.btn-play {
    margin-top: 15px;
    width: 184px;
    height: 60px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 40px;
    background: #f6b413;
    transition: background 0.3s;
    font-family: 'Nunito', 'Nunito Fallback';
}

.btn-play:hover {
    background: rgba(255, 255, 255);
    cursor: pointer;
    color: black;
}

.btn-play:disabled {
    background: #f6b413;
    color: white;
    cursor: default;
    opacity: 0.7;
}

.btn-play:disabled:hover {
    background: #f6b413;
    color: white;
}

.game-title {
    position: absolute;
    bottom: 20px;
    font-size: 18px;
    text-align: center;
}

.dot-spinner {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.dot-spinner div {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    animation: bounce 0.6s infinite alternate;
}

.dot-spinner div:nth-child(2) {
    animation-delay: 0.2s;
}

.dot-spinner div:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.8);
        opacity: 0.5;
    }
}

iframe {
    width: 100vw;
    height: 100vh;
    border: none;
    display: block;
}