* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #11111b;
    color: #cdd6f4;
    line-height: 1.6;
}

/* Auth pages */
.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #11111b 0%, #1e1e2e 100%);
}

.auth-box {
    background: #1e1e2e;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    border: 1px solid #313244;
}

.auth-box h1 {
    text-align: center;
    color: #cdd6f4;
    margin-bottom: 10px;
    font-size: 2.5em;
}

.subtitle {
    text-align: center;
    color: #6c7086;
    margin-bottom: 30px;
}

.auth-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: #11111b;
    border: 1px solid #313244;
    border-radius: 8px;
    color: #cdd6f4;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #89b4fa;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: #89b4fa;
    color: #11111b;
}

.btn-primary:hover {
    background: #74c7ec;
}

.btn-secondary {
    background: #6c7086;
    color: #cdd6f4;
}

.btn-secondary:hover {
    background: #585b70;
}

.auth-link {
    text-align: center;
    margin-top: 20px;
    color: #6c7086;
}

.auth-link a {
    color: #89b4fa;
    text-decoration: none;
}

.auth-link a:hover {
    text-decoration: underline;
}

.alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-error {
    background: #f38ba8;
    color: #11111b;
}

.alert-success {
    background: #a6e3a1;
    color: #11111b;
}

/* Banned page */
.banned-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #11111b 0%, #1e1e2e 100%);
}

.banned-box {
    background: #1e1e2e;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    border: 1px solid #313244;
    text-align: center;
}

.banned-box h1 {
    color: #f38ba8;
    margin-bottom: 20px;
}

.banned-box p {
    margin: 15px 0;
    color: #cdd6f4;
}

.banned-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px 0;
}

.banned-actions button {
    width: 100%;
}

.banned-actions button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.logout-link {
    display: inline-block;
    margin-top: 20px;
    color: #6c7086;
    text-decoration: none;
}

.logout-link:hover {
    color: #cdd6f4;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1e1e2e;
}

::-webkit-scrollbar-thumb {
    background: #45475a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #585b70;
}
