* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
}

/* Glassmorphism Container */
.container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.dashboard-container {
    max-width: 900px;
    width: 95%;
    margin: 20px auto;
    padding: 30px;
    height: auto;
    overflow-y: auto;
    max-height: 90vh;
}

h1, h2, h3 {
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #00d2ff;
    text-shadow: 0 0 10px rgba(0,210,255,0.5);
    margin-bottom: 30px;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: #ccc;
}

input, select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: 0.3s;
}

input:focus, select:focus {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(0,210,255,0.3);
}

button {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(45deg, #00d2ff, #3a7bd5);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,210,255,0.4);
}

/* Dashboard Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card h4 {
    font-size: 0.8em;
    color: #aaa;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.8em;
    font-weight: 700;
    color: #00d2ff;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.badge {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
}

.badge-active { background: rgba(0, 255, 0, 0.2); color: #0f0; }
.badge-banned { background: rgba(255, 0, 0, 0.2); color: #f00; }

.logout-btn {
    background: transparent;
    border: 1px solid #ff4b2b;
    color: #ff4b2b;
    width: auto;
    padding: 5px 15px;
    float: right;
}

.logout-btn:hover {
    background: #ff4b2b;
    color: white;
}

.alert {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 0.9em;
}

.alert-error { background: rgba(255, 0, 0, 0.2); border: 1px solid #f00; }
.alert-success { background: rgba(0, 255, 0, 0.2); border: 1px solid #0f0; }
