:root{

    --primary:#D4AF37;

    --primary-dark:#c49f2c;

    --bg:#F5F6F8;

    --surface:#ffffff;

    --text:#1F2937;

    --muted:#6B7280;

    --border:#E5E7EB;

    --radius:18px;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    /* --primary-color:black; */

}

*{

    box-sizing:border-box;

}

html{

    height:100%;
    font-size: 14px;

}

body{

    margin:0;

    min-height:100%;

    background:var(--bg);

    color:var(--text);

    font-family:'Poppins',sans-serif;

}

#app{

    min-height:100vh;

    padding-bottom:90px;

}

.loader{

    position:fixed;

    inset:0;

    background:white;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:9999;

}

.btn-primary{

    background:var(--primary);

    border:none;

    color:#222;

    border-radius:14px;

    font-weight:600;

}

.btn-primary:hover{

    background:var(--primary-dark);

    color:#222;

}

.surface{

    background:white;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

.page{

    max-width:650px;

    margin:auto;

    padding:20px;
    padding-bottom: 140px;
}