/* Appolyon SCP:SL - Серый строгий дизайн */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #1a1a1a;
    color: #c0c0c0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Шапка */
.header {
    background: #2a2a2a;
    padding: 20px 0;
    border-bottom: 3px solid #4a4a4a;
    margin-bottom: 30px;
}

.header h1 {
    color: #e0e0e0;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.header h1 span {
    color: #888;
}

/* Навигация */
.nav {
    background: #222;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    margin-bottom: 30px;
}

.nav a {
    color: #aaa;
    text-decoration: none;
    padding: 10px 20px;
    transition: all 0.3s;
    font-weight: 300;
}

.nav a:hover {
    color: #fff;
    background: #333;
}

/* Карточки */
.card {
    background: #242424;
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.card h2 {
    color: #ddd;
    font-weight: 300;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* Статистика */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.stat-item {
    background: #1e1e1e;
    padding: 15px;
    text-align: center;
    border: 1px solid #333;
}

.stat-item .number {
    font-size: 2rem;
    color: #e0e0e0;
    font-weight: 300;
}

.stat-item .label {
    color: #888;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Таблицы */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

table th {
    background: #2a2a2a;
    color: #ddd;
    padding: 12px;
    text-align: left;
    font-weight: 300;
    border-bottom: 2px solid #444;
}

table td {
    padding: 10px 12px;
    border-bottom: 1px solid #2a2a2a;
}

table tr:hover {
    background: #2a2a2a;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 10px 25px;
    background: #333;
    color: #ddd;
    border: 1px solid #444;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    font-weight: 300;
}

.btn:hover {
    background: #444;
    color: #fff;
    border-color: #555;
}

.btn-discord {
    background: #5865F2;
    border-color: #4752c4;
    color: #fff;
}

.btn-discord:hover {
    background: #4752c4;
    color: #fff;
}

/* Статус сервера */
.status-online {
    color: #4caf50;
}

.status-offline {
    color: #f44336;
}

/* Подвал */
.footer {
    background: #222;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}
