:root {
    --primary-color: #ff3366;
    --accent: #00d8f6;
    --background: #0a0f19;
    --surface: #121826;
    --surface-light: #1e2536;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--background);
    color: var(--text-light);
    min-height: 100vh;
}

.hidden {
    display: none !important;
}

.glass-card {
    background: rgba(18, 24, 38, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.primary-glow-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.primary-glow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 216, 246, 0.4);
}

.full-width {
    width: 100%;
}

.admin-layout {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text-light);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.admin-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: var(--surface-light);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.metric-card h3 {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.metric-card .value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface-light);
    border-radius: 12px;
    overflow: hidden;
}

.data-table th, .data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.data-table th {
    background: rgba(0,0,0,0.2);
    color: var(--text-muted);
    font-weight: 600;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.badge.success { background: rgba(46, 213, 115, 0.2); color: #2ed573; }
.badge.pending { background: rgba(255, 165, 2, 0.2); color: #ffa502; }
.badge.failed { background: rgba(255, 71, 87, 0.2); color: #ff4757; }

#login-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.login-box {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}
