/* css/style.css */

:root {
    /* Palet Warna Nusantara Kuno (Maroon, Gold, Dark Moss) */
    --color-bg: #120907;          /* Hitam kecokelatan arang kayu kuno */
    --color-gold: #ffd700;        /* Emas murni untuk teks judul */
    --color-gold-dim: #b59410;    /* Emas redup untuk garis pembatas */
    --color-border: #4a2d18;      /* Cokelat kayu/tanah untuk bingkai */
    --color-text: #f0e6df;        /* Putih gading lembut untuk teks biasa */
    --color-text-muted: #8c7361;  /* Cokelat abu-abu untuk sub-judul/versi */

    /* Tipografi */
    --font-display: 'Georgia', serif;
    --font-ui: 'Arial', sans-serif;
}

/* Reset Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body, html {
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    font-family: var(--font-ui);
    color: var(--color-text);
    overflow: hidden;
}

/* Base Utility untuk Screen Layout */
.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Dikontrol via UIManager.switchScreen */
}

.screen.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Kontainer pembungkus utama untuk simulasi smartphone vertical */
#game-wrapper {
    position: relative;
    aspect-ratio: 9 / 16;
    width: 100%;
    max-width: 420px;
    height: 95vh;
    margin: 2.5vh auto;
    overflow: hidden;
    background-color: var(--color-bg, #120907);
    border: 4px solid #8e6d2b;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(142, 109, 43, 0.25);
}
