@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
}


.wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}


.top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 12px;
}

.top h1 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #fff;
}

.top-r {
    display: flex;
    gap: 10px;
    align-items: center;
}

.top-r a, .top a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.top-r a:hover, .top a:hover { color: #fff; }

.badge {
    font-size: 11px;
    color: #888;
    background: #1a1a1a;
    border: 1px solid #222;
    padding: 4px 10px;
    border-radius: 6px;
}


.card {
    background: #141414;
    border: 1px solid #1e1e1e;
    border-radius: 16px;
    padding: 28px 24px;
    margin-bottom: 16px;
}

.card h2 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.card p {
    font-size: 14px;
    line-height: 1.7;
    color: #888;
}


.field {
    margin-bottom: 16px;
}

.field label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.field input,
.field select {
    width: 100%;
    padding: 12px 14px;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.field input:focus { border-color: #3b82f6; }
.field input::placeholder { color: #444; }


.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    text-align: center;
}

.btn-w {
    background: #fff;
    color: #000;
}

.btn-w:hover {
    background: #e0e0e0;
    transform: translateY(-1px);
}

.btn-g {
    background: #141414;
    color: #e0e0e0;
    border: 1px solid #222;
}

.btn-g:hover {
    background: #1a1a1a;
    border-color: #444;
}

.btn-r {
    background: #1a0a0a;
    color: #f87171;
    border: 1px solid #2a1515;
}

.btn-r:hover {
    background: #2a1515;
    border-color: #f87171;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 8px;
}


table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    font-size: 11px;
    font-weight: 500;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 10px 12px;
    border-bottom: 1px solid #1e1e1e;
}

td {
    padding: 12px;
    font-size: 14px;
    color: #ccc;
    border-bottom: 1px solid #111;
}

tr:hover td { background: #111; }

.acts {
    display: flex;
    gap: 8px;
}

.acts a {
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.act-v { color: #60a5fa; background: #0a1628; border: 1px solid #1e3a5f; }
.act-v:hover { background: #1e3a5f; }
.act-d { color: #f87171; background: #1a0a0a; border: 1px solid #2a1515; }
.act-d:hover { background: #2a1515; }


.tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    background: #111;
    border-radius: 10px;
    padding: 4px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}

.tab:hover { color: #aaa; }
.tab.on { background: #1e1e1e; color: #fff; }


.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.stat {
    background: #141414;
    border: 1px solid #1e1e1e;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-n {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.stat-l {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 16px;
}

.alert-ok { background: #052e16; color: #4ade80; border: 1px solid #14532d; }
.alert-err { background: #1a0a0a; color: #f87171; border: 1px solid #2a1515; }


.search {
    margin-bottom: 16px;
}

.search input {
    width: 100%;
    padding: 12px 14px;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
}

.search input:focus { border-color: #3b82f6; }
.search input::placeholder { color: #444; }


.sep { height: 1px; background: #1e1e1e; margin: 20px 0; }
.mt { margin-top: 24px; }
.pw { color: #555; font-size: 14px; }

.steps { counter-reset: step; padding-left: 0; }
.steps li {
    list-style: none;
    counter-increment: step;
    padding: 6px 0;
    font-size: 14px;
    color: #aaa;
}
.steps li::before {
    content: counter(step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    background: #1e1e1e;
    color: #888;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.platform {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-top: 16px;
    margin-bottom: 8px;
}
