*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Segoe UI, Arial, sans-serif;
    background:var(--black);
    color:var(--text);
    min-height:100vh;
    -webkit-text-size-adjust:100%;
    text-size-adjust:100%;
}

a{
    text-decoration:none;
    color:inherit;
}

button{
    cursor:pointer;
    transition:var(--transition);
    touch-action:manipulation;
}

input,
select,
textarea,
button{
    font-family:inherit;
    outline:none;
    font-size:16px;
}

img,
video,
canvas{
    max-width:100%;
}

table{
    max-width:100%;
}

th,
td{
    overflow-wrap:anywhere;
}

@media(pointer:coarse){
    button,
    input,
    select,
    textarea,
    a{
        min-height:44px;
    }
}

.container{
    width:min(1400px,95%);
    margin:auto;
}

.card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    padding:20px;
}

.btn-primary{
    background:var(--gold);
    color:#000;
    border:none;
    border-radius:10px;
    padding:14px 20px;
    font-weight:700;
}

.btn-primary:hover{
    background:var(--gold-dark);
}

.text-center{
    text-align:center;
}

.hidden{
    display:none;
}
