/* Global Styles */
* {
    box-sizing: border-box;
}

:root {
    --if-bg-0: #0f1116;
    --if-bg-1: #181b23;
    --if-bg-2: #232835;
    --if-bg-3: #2f3546;
    --if-text-0: #f6f7fb;
    --if-text-1: #cdd3e1;
    --if-border: rgba(255, 255, 255, 0.16);
    --if-gold-0: #f7d890;
    --if-gold-1: #dfa63a;
    --if-gold-2: #8f6319;
    --if-danger-0: #ff7e7e;
    --if-danger-1: #e84949;
    --if-shadow-1: 0 10px 30px rgba(0, 0, 0, 0.35);
}

html, input {
    font-family: Spectral;
    font-size: 18px;
    line-height: 1.3em;
    font-weight: 200;
    background-color: #181818;
    color: #fff;
}

strong {
	font-weight: bold;
}

html, body {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
    word-wrap: break-word;
}

/* Utility Classes */
.pad15 {
    padding-left:15px;
}

.mar10 {
    margin-left:10px;
}

.mar15 {
    margin-left:15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    border: 1px solid var(--if-border);
    padding: 10px 16px;
    font-family: "Lato", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition: transform 120ms ease, box-shadow 140ms ease, border-color 140ms ease, background-color 140ms ease, color 140ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn--ghost {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    color: var(--if-text-0);
}

.btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: var(--if-shadow-1);
}

.btn--primary {
    color: #231702;
    border-color: rgba(255, 216, 144, 0.58);
    background: linear-gradient(135deg, var(--if-gold-0), var(--if-gold-1));
}

.btn--primary:hover {
    box-shadow: 0 8px 22px rgba(223, 166, 58, 0.4);
}
