:root{
--gold:#d4af37;
--bg:#161616;
--panel:rgba(0,0,0,.55);
--text:#e8e8e8;
}

*{box-sizing:border-box}

body{
margin:0;
padding:0;
font-family:Arial,Helvetica,sans-serif;
background:
linear-gradient(
135deg,
#1b1b1b 0%,
#2c2c2c 15%,
#3a3a3a 30%,
#242424 45%,
#4a4a4a 60%,
#2a2a2a 75%,
#161616 100%
) fixed;
color:var(--text);
}

.main{
padding:25px;
}

.hero{
background:var(--panel);
border:1px solid var(--gold);
border-radius:18px;
padding:24px;
margin-bottom:20px;
}

.card{
background:var(--panel);
border:1px solid var(--gold);
border-radius:16px;
padding:20px;
margin-bottom:15px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:15px;
}

.btn{
display:inline-block;
padding:12px 18px;
border-radius:10px;
background:var(--gold);
color:#000;
font-weight:bold;
text-decoration:none;
border:0;
cursor:pointer;
}

input,textarea,select{
width:100%;
padding:12px;
border-radius:8px;
border:1px solid var(--gold);
background:#111;
color:white;
}

h1,h2,h3{
color:var(--gold);
}

/* ---------- NORMAL BUTTONS ---------- */

.btn{
display:inline-block !important;
width:auto !important;
min-width:unset !important;
padding:12px 20px !important;
margin-top:12px;
border-radius:12px;
text-decoration:none;
font-weight:700;
}

.card .btn{
display:inline-block !important;
width:auto !important;
}

.hero .btn{
display:inline-block !important;
width:auto !important;
}

/* prevent giant buttons */
a.btn{
max-width:max-content;
}

