* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
font-family: 'Inter', sans-serif;
background: #0f172a;
color: #e5e7eb;
line-height: 1.6;
}

.site-header {
text-align: center;
padding: 40px 20px;
}

.site-header h1 {
font-size: 2rem;
margin-bottom: 10px;
}

.back-button {
color: #6366f1;
text-decoration: none;
font-size: 0.9rem;
}

.back-button:hover {
color: #4f46e5;
}

.game-container {
display: flex;
justify-content: center;
align-items: center;
padding: 0px 20px;
}

.game-box {
background: #1e293b;
padding: 20px;
border-radius: 15px;
box-shadow: 0 4px 12px rgba(0,0,0,0.4);
text-align: center;
width: 450px;
}

.game-box input {
width: 100%;
padding: 10px;
margin: 15px 0;
border-radius: 8px;
border: none;
font-size: 1rem;
}

.game-box button {
padding: 10px 18px;
background: #6366f1;
border: none;
border-radius: 8px;
color: white;
font-size: 1rem;
cursor: pointer;
}

.game-box button:hover {
background: #4f46e5;
}

#dashBtn{
background:#f59e0b; /* warna kuning */
}

#dashBtn:active{
background:#d97706;
}

#hasil {
margin-top: 15px;
color: #94a3b8;
}

canvas{
width:100%;
max-width:360px;
height:auto;
background:#020617;
border-radius:10px;
display:block;
margin:20px auto;
touch-action:none;
}

.mobile-controls{
display:flex;
justify-content:space-between;
gap:20px;
margin-top:20px;
}

.mobile-controls button{
flex:1;
padding:18px;
font-size:22px;
border:none;
border-radius:10px;
background:#6366f1;
color:white;
font-weight:600;
}

.mobile-controls button:active{
background:#4f46e5;
}

#hud{
display: none;
displayflex;
justify-content:space-between;
flex-wrap:wrap;
gap:10px;
margin-bottom
}

.hud-rules {
	text-align:center;
}

#rulesModal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.85);
display:none;
justify-content:center;
align-items:center;
z-index:200;
}

#rulesModal img{
max-width:90%;
max-height:90%;
border-radius:10px;
}