
/* --- GENEL AYARLAR --- */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    color: #fff;
    font-family: var(--font-main);
    overflow: hidden;
    position: fixed;
    user-select: none;
    touch-action: none;
}

.main-screen-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}

#gameCanvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* CrazyGames modunda auth/quest UI'ları gizle — tüm ekran boyutlarında */
body.crazygames-mode #auth-btn,
body.crazygames-mode #profile-btn,
body.crazygames-mode #reg-nudge,
body.crazygames-mode #quest-btn,
body.crazygames-mode #login-nudge,
body.crazygames-mode #inviteBtn {
    display: none !important;
}

/* Davet butonu: sadece oyun içinde görünür */
#inviteBtn { display: none; }
body.in-game #inviteBtn { display: flex !important; }
body.crazygames-mode.in-game #inviteBtn { display: none !important; }

