*{
box-sizing:border-box;
-webkit-tap-highlight-color:transparent;
}

:root{
--bg:#080d12;
--panel:#151a20;
--panel2:#202833;
--gold:#d99b35;
--gold2:#ffd66a;
--text:#f5e8c8;
--muted:#a99b7d;
}

html,body{
margin:0;
padding:0;
min-height:100%;
font-family:Georgia,serif;
background:
linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.85)),
url("/assets/backgrounds/forest.svg") center/cover fixed;
color:var(--text);
}

body{
padding-bottom:80px;
}

.top{
height:60px;
display:flex;
align-items:center;
justify-content:space-between;
padding:10px 16px;
background:#090b0d;
border-bottom:1px solid #4b3820;
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
width:45px;
height:45px;
}

.logo b{
display:block;
color:var(--gold2);
letter-spacing:2px;
}

.logo small{
color:#aaa;
}

.round{
border:1px solid var(--gold);
background:#111;
color:var(--gold2);
border-radius:50%;
width:38px;
height:38px;
}

.page{
display:none;
}

.page.active{
display:block;
}

.hero{
text-align:center;
padding:35px 15px;
}

.hero h1{
font-size:34px;
color:var(--gold2);
text-shadow:0 0 15px #000;
}

.card{
margin:15px;
padding:20px;
background:
linear-gradient(145deg,#1a1d21,#090b0d);
border:1px solid #5a411c;
border-radius:14px;
box-shadow:0 10px 30px #000;
}

.card img{
width:70px;
height:70px;
}

.price{
font-size:28px;
font-weight:bold;
color:white;
}

.buy-button{
width:100%;
margin-top:15px;
padding:14px;
border:0;
border-radius:8px;
background:linear-gradient(90deg,#bd7c16,#ffd45b);
font-weight:bold;
}

.bottom{
position:fixed;
bottom:0;
left:0;
right:0;
height:70px;
background:#090b0d;
border-top:1px solid #5a411c;
display:flex;
}

.bottom button{
flex:1;
background:none;
border:0;
color:#cdbb90;
font-size:14px;
}

.bottom button.active{
color:var(--gold2);
}
