* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1a202c 100%);
    color: #e2e8f0;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.navbar {
    background: #1e293b;
    border-bottom: 2px solid #60a5fa;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand h1 {
    font-size: 24px;
    color: #60a5fa;
}

.navbar-nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    background: #60a5fa;
    color: #0f172a;
}

.content {
    background: #1a202c;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #334155;
}

h2 {
    color: #60a5fa;
    margin-bottom: 20px;
    font-size: 28px;
}

h3 {
    color: #cbd5e1;
    margin: 15px 0;
    font-size: 18px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.status-card {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s;
}

.status-card:hover {
    border-color: #60a5fa;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.2);
}

.status-card ul {
    list-style: none;
    margin: 10px 0;
}

.status-card li {
    padding: 5px 0;
    font-size: 14px;
}

.btn {
    background: #60a5fa;
    color: #0f172a;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

.btn-primary {
    background: #10b981;
}

.btn-primary:hover {
    background: #059669;
}

.btn-small {
    padding: 4px 8px;
    font-size: 12px;
}

.btn-danger {
    background: #ef4444;
}

.btn-danger:hover {
    background: #dc2626;
}

.input {
    background: #0f172a;
    border: 1px solid #334155;
    color: #e2e8f0;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    margin: 5px;
}

.input:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
}

.form-group {
    margin: 15px 0;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #cbd5e1;
}

.commands-header {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.commands-header .input {
    flex: 1;
    min-width: 150px;
}

.commands-table,
.mod-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.commands-table th,
.mod-table th {
    background: #0f172a;
    color: #60a5fa;
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #334155;
}

.commands-table td,
.mod-table td {
    padding: 12px;
    border-bottom: 1px solid #334155;
}

.commands-table tr:hover,
.mod-table tr:hover {
    background: #0f172a;
}

.info-box {
    background: #0f172a;
    border-left: 4px solid #60a5fa;
    padding: 15px;
    border-radius: 4px;
    margin: 10px 0;
}

.info-box p {
    margin: 5px 0;
    font-size: 14px;
}

.commands-page,
.moderation-page,
.settings-page {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .navbar-nav {
        width: 100%;
        justify-content: space-around;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .commands-header {
        flex-direction: column;
    }
    
    .commands-header .input {
        width: 100%;
    }
}
