/* Insiders GG - Light Theme (Ice White) */
:root {
    --bg-color: #EFEFEF;
    /* Gelo / Off-White */
    --text-color: #111111;
    --accent-color: #000000;
    --border-color: #e0e0e0;
    --card-bg: #ffffff;
    --hover-bg: #eeeeee;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
} */
body {
    font-family: 'Outfit', sans-serif;
    /* Keep font */
}


a {
    color: var(--text-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Layout */
.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

header {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    margin-bottom: 40px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1,
h2,
h3 {
    letter-spacing: -0.05em;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Cards & Sections */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

/* Ranking Table */
table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

th {
    color: #888;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background-color: var(--hover-bg);
}

.rank-num {
    font-weight: bold;
    width: 50px;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--text-color);
    color: var(--bg-color);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
    border: 1px solid var(--text-color);
    cursor: pointer;
}

.btn:hover {
    opacity: 0.8;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
}

.btn-outline:hover {
    background: var(--hover-bg);
}

/* Forms */
.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

input {
    width: 100%;
    padding: 12px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 4px;
    font-family: inherit;
}

input:focus {
    outline: none;
    border-color: #fff;
}

/* Footer */
footer {
    text-align: center;
    color: #666;
    padding: 40px 0;
    font-size: 0.9rem;
    margin-top: auto;
}

/* Utility */
.flex {
    display: flex;
    gap: 10px;
    align-items: center;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 32px;
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    background: #eee;
    border: 1px solid #ccc;
}

.status-success {
    border-color: #000;
    color: #000;
    background: #e0ffe0;
}