/* Guaranteed Partnership - Theme CSS */
/* Adapted from luxury glassmorphism theme */

/* Modern CSS Variables */
:root {
    --bg-dark: #080B10;
    --bg-gradient: radial-gradient(circle at 50% 0%, #161F2C 0%, #080B10 100%);
    --card-bg: rgba(22, 31, 44, 0.6);
    --card-border: rgba(255, 255, 255, 0.06);
    --gold-light: #FCE870;
    --gold: #FCD535;
    --gold-dark: #D4AF37;
    --gold-gradient: linear-gradient(135deg, #FCD535 0%, #F39C12 100%);
    --text-main: #FFFFFF;
    --text-muted: #8E9BAE;
    --success: #22C55E;
    --error: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;
    --blur: blur(12px);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #000;
    display: flex;
    justify-content: center;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

/* App Container (Mobile Frame) */
.app-container {
    width: 100%;
    max-width: 414px;
    min-height: 100vh;
    background: var(--bg-gradient);
    background-attachment: fixed;
    position: relative;
    padding-bottom: 90px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* Typography */
.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold);
    display: inline-block;
}

.number-font {
    font-family: 'Space Grotesk', sans-serif;
}

h2, h3 { 
    font-weight: 600; 
    letter-spacing: -0.02em; 
}

/* Glassmorphism Card */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Global Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 11, 16, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i { font-size: 22px; }
.logo h1 { font-size: 18px; font-weight: 700; letter-spacing: -0.5px; }

.header-actions {
    display: flex;
    gap: 12px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    text-decoration: none;
}

.icon-btn:hover, .icon-btn:active {
    background: rgba(255,255,255,0.1);
}

.badge {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--error);
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
}

/* Page Content */
.page-content {
    padding: 0 20px;
    flex: 1;
}

/* Greeting */
.greeting {
    margin: 10px 0 24px 0;
}

.welcome-text { 
    color: var(--text-muted); 
    font-size: 14px; 
    margin-bottom: 4px; 
}

.user-name { 
    font-size: 24px; 
}

/* Balance Card */
.balance-card {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.balance-card::before {
    content: '';
    position: absolute;
    top: -50px; left: -50px; right: -50px; bottom: -50px;
    background: radial-gradient(circle at top right, rgba(252, 213, 53, 0.15), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.balance-label {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
    position: relative; z-index: 1;
}

.balance-amount {
    font-size: 48px;
    letter-spacing: -1px;
    margin-bottom: 20px;
    position: relative; z-index: 1;
    text-shadow: 0 4px 20px rgba(252, 213, 53, 0.3);
}

/* Stats Cards */
.stats-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 20px;
    scrollbar-width: none;
}

.stats-scroll::-webkit-scrollbar { display: none; }

.stat-card {
    flex: 0 0 120px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    cursor: pointer;
}

.stat-card.active {
    background: rgba(252, 213, 53, 0.1);
    border-color: rgba(252, 213, 53, 0.4);
}

.stat-card h3 { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.stat-card.active h3 { color: var(--gold); }
.stat-card .people { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.stat-card .amount { font-size: 13px; color: var(--success); font-weight: 500; }

/* Primary Button */
.primary-btn {
    width: 100%;
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(252, 213, 53, 0.3);
    transition: var(--transition);
    margin-bottom: 20px;
    text-decoration: none;
}

.primary-btn:active { 
    transform: scale(0.98); 
    box-shadow: 0 4px 10px rgba(252, 213, 53, 0.3); 
}

.primary-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.secondary-btn {
    width: 100%;
    background: rgba(255,255,255,0.05);
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
    text-decoration: none;
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-title { 
    font-size: 18px; 
    font-weight: 600; 
}

.view-all { 
    color: var(--gold); 
    font-size: 14px; 
    text-decoration: none; 
    font-weight: 500; 
}

/* Activity List */
.activity-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition);
}

.activity-item:active { 
    background: rgba(255,255,255,0.05); 
}

.activity-icon {
    width: 40px; 
    height: 40px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    display: flex; 
    justify-content: center; 
    align-items: center;
    margin-right: 14px;
    font-size: 16px;
}

.activity-icon.out {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.activity-details { flex: 1; }
.activity-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.activity-time { font-size: 12px; color: var(--text-muted); }
.activity-amount { font-size: 16px; font-weight: 700; color: var(--success); }
.activity-amount.out { color: var(--text-main); }

/* QR Section */
.qr-section {
    text-align: center;
    margin-bottom: 30px;
}

.qr-placeholder {
    width: 200px; 
    height: 200px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 20px;
    padding: 10px;
    display: flex; 
    justify-content: center; 
    align-items: center;
    position: relative;
}

.qr-placeholder img { 
    width: 100%; 
    height: 100%; 
    border-radius: 10px; 
}

.qr-logo {
    position: absolute;
    width: 40px; 
    height: 40px;
    background: #000; 
    border-radius: 50%;
    display: flex; 
    justify-content: center; 
    align-items: center;
    border: 3px solid #fff;
}

/* Referral Box */
.referral-box {
    background: rgba(0,0,0,0.3);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 6px 6px 6px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.ref-link { 
    color: var(--text-muted); 
    font-family: monospace; 
    font-size: 14px; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap; 
}

.copy-btn {
    background: rgba(255,255,255,0.1);
    border: none; 
    color: #fff; 
    padding: 10px 16px; 
    border-radius: 8px; 
    cursor: pointer;
    font-weight: 500; 
    transition: var(--transition);
}

.copy-btn:active { 
    background: rgba(255,255,255,0.2); 
}

/* Social Share */
.social-share {
    display: flex; 
    justify-content: center; 
    gap: 16px;
}

.social-btn {
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    border: none; 
    cursor: pointer;
    font-size: 20px; 
    color: #fff; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    transition: var(--transition);
    text-decoration: none;
}

.social-btn:active { transform: scale(0.9); }
.btn-wa { background: #25D366; }
.btn-tg { background: #0088cc; }
.btn-tw { background: #1DA1F2; }

/* Stats Row */
.stat-row { 
    display: flex; 
    gap: 16px; 
    margin-bottom: 24px; 
}

.stat-box {
    flex: 1; 
    padding: 16px; 
    border-radius: 16px;
    background: rgba(255,255,255,0.02); 
    text-align: center;
}

.stat-box .lbl { 
    font-size: 12px; 
    color: var(--text-muted); 
    margin-bottom: 8px; 
}

.stat-box .val { 
    font-size: 20px; 
    font-weight: 700; 
}

/* Filter Tabs */
.filter-tabs {
    display: flex; 
    background: rgba(255,255,255,0.05); 
    border-radius: 12px; 
    padding: 4px; 
    margin-bottom: 20px;
}

.filter-tab {
    flex: 1; 
    text-align: center; 
    padding: 8px 0; 
    font-size: 13px; 
    font-weight: 600;
    color: var(--text-muted); 
    cursor: pointer; 
    border-radius: 8px; 
    transition: var(--transition);
    border: none;
    background: none;
}

.filter-tab.active { 
    background: var(--card-bg); 
    color: #fff; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.2); 
}

/* User List */
.user-list { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
}

.user-item {
    display: flex; 
    align-items: center; 
    padding: 12px;
    background: rgba(255,255,255,0.02); 
    border-radius: 16px; 
    border: 1px solid rgba(255,255,255,0.02);
}

.avatar {
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-weight: 600; 
    font-size: 18px; 
    margin-right: 14px;
    color: #fff;
}

.u-info { flex: 1; }
.u-name { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.u-level { 
    font-size: 12px; 
    color: var(--gold); 
    background: rgba(252, 213, 53, 0.1); 
    padding: 2px 8px; 
    border-radius: 10px; 
    display: inline-block;
}

.u-profit { text-align: right; }
.u-profit span { display: block; font-weight: 700; color: var(--success); }
.u-profit small { font-size: 11px; color: var(--text-muted); }

/* Profile */
.profile-header {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    margin-bottom: 30px;
}

.profile-avatar {
    width: 90px; 
    height: 90px; 
    border-radius: 50%; 
    border: 3px solid var(--gold);
    padding: 3px; 
    margin-bottom: 16px; 
    position: relative;
}

.profile-avatar img { 
    width: 100%; 
    height: 100%; 
    border-radius: 50%; 
    object-fit: cover; 
}

.rank-badge {
    position: absolute; 
    bottom: -5px; 
    left: 50%; 
    transform: translateX(-50%);
    background: var(--gold-gradient); 
    color: #000; 
    font-size: 10px; 
    font-weight: 700;
    padding: 2px 8px; 
    border-radius: 10px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.profile-name { 
    font-size: 22px; 
    font-weight: 700; 
    margin-bottom: 4px; 
}

.profile-email { 
    color: var(--text-muted); 
    font-size: 14px; 
}

/* Settings List */
.settings-group { margin-bottom: 24px; }

.settings-label { 
    font-size: 13px; 
    color: var(--text-muted); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 12px; 
    margin-left: 8px; 
}

.settings-list { 
    background: rgba(255,255,255,0.03); 
    border-radius: 16px; 
    overflow: hidden; 
    border: 1px solid rgba(255,255,255,0.05); 
}

.setting-item {
    display: flex; 
    align-items: center; 
    padding: 16px; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    cursor: pointer;
    text-decoration: none;
    color: var(--text-main);
}

.setting-item:last-child { border-bottom: none; }
.setting-item:active { background: rgba(255,255,255,0.05); }

.s-icon { 
    width: 32px; 
    height: 32px; 
    border-radius: 10px; 
    background: rgba(255,255,255,0.05); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin-right: 14px; 
    color: var(--text-muted); 
}

.s-text { 
    flex: 1; 
    font-weight: 500; 
    font-size: 15px; 
}

.s-arrow { 
    color: var(--text-muted); 
    font-size: 12px; 
}

.text-danger { color: var(--error) !important; }
.bg-danger-light { background: rgba(239, 68, 68, 0.1) !important; }
.text-success { color: var(--success) !important; }
.text-warning { color: var(--warning) !important; }
.text-muted { color: var(--text-muted) !important; }

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 414px;
    background: rgba(13, 18, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-around;
    padding: 16px 10px 24px 10px;
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 500;
    transition: var(--transition);
    width: 20%;
}

.nav-icon {
    font-size: 20px;
    margin-bottom: 2px;
    position: relative;
    transition: var(--transition);
}

.nav-item.active { color: var(--gold); }
.nav-item.active .nav-icon { transform: translateY(-2px); }

.nav-item::after {
    content: '';
    width: 4px; 
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    transition: var(--transition);
    margin-top: 2px;
}

.nav-item.active::after { 
    opacity: 1; 
    transform: scale(1.2); 
}

/* Toast Notification */
.toast {
    position: fixed; 
    top: 80px; 
    left: 50%; 
    transform: translateX(-50%) translateY(-20px);
    background: rgba(34, 197, 94, 0.9); 
    color: #fff;
    padding: 12px 24px; 
    border-radius: 30px; 
    font-weight: 600; 
    font-size: 14px;
    backdrop-filter: blur(10px); 
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    opacity: 0; 
    pointer-events: none; 
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2000; 
    display: flex; 
    align-items: center; 
    gap: 8px;
}

.toast.show { 
    opacity: 1; 
    transform: translateX(-50%) translateY(0); 
    pointer-events: auto; 
}

.toast.toast-error {
    background: rgba(239, 68, 68, 0.9);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.toast.toast-success {
    background: rgba(34, 197, 94, 0.9);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text-main);
    font-size: 16px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-error {
    color: var(--error);
    font-size: 12px;
    margin-top: 6px;
}

.form-hint {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 6px;
}

/* Auth Pages */
.auth-container {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.auth-logo {
    text-align: center;
    margin-bottom: 40px;
}

.auth-logo i {
    font-size: 48px;
    margin-bottom: 16px;
}

.auth-logo h1 {
    font-size: 28px;
    font-weight: 700;
}

.auth-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.auth-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.auth-footer {
    text-align: center;
    margin-top: auto;
    padding-top: 24px;
    color: var(--text-muted);
    font-size: 14px;
}

.auth-footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

/* Payment Page */
.payment-card {
    text-align: center;
    padding: 40px 20px;
}

.payment-amount {
    font-size: 56px;
    margin: 24px 0;
}

.payment-info {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.status-processing {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info);
}

.status-completed {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.status-failed, .status-cancelled, .status-reversed {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

/* ========================================
   ADMIN STYLES - Desktop Layout
   ======================================== */

body.admin-body {
    display: block;
    background: var(--bg-dark);
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Admin Sidebar */
.admin-sidebar {
    width: 260px;
    background: rgba(22, 31, 44, 0.8);
    border-right: 1px solid var(--card-border);
    padding: 24px 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar .logo {
    padding: 0 24px;
    margin-bottom: 32px;
}

.admin-sidebar .logo h1 {
    font-size: 20px;
}

.admin-nav {
    list-style: none;
}

.admin-nav-item {
    margin-bottom: 4px;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.admin-nav-link:hover {
    background: rgba(255,255,255,0.03);
    color: var(--text-main);
}

.admin-nav-link.active {
    background: rgba(252, 213, 53, 0.1);
    color: var(--gold);
    border-left-color: var(--gold);
}

.admin-nav-link i {
    width: 20px;
    text-align: center;
}

/* Admin Main Content */
.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 24px 32px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.admin-page-title {
    font-size: 28px;
    font-weight: 700;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Admin Cards */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.admin-stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
}

.admin-stat-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.admin-stat-card .icon.gold {
    background: rgba(252, 213, 53, 0.1);
    color: var(--gold);
}

.admin-stat-card .icon.green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.admin-stat-card .icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info);
}

.admin-stat-card .icon.red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.admin-stat-card .label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.admin-stat-card .value {
    font-size: 28px;
    font-weight: 700;
}

/* Admin Tables */
.admin-table-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: 16px 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid var(--card-border);
}

.admin-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--card-border);
    font-size: 14px;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

/* Admin Forms */
.admin-form-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.admin-form-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--card-border);
}

.admin-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.admin-btn-primary {
    background: var(--gold-gradient);
    color: #000;
}

.admin-btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--text-main);
}

.admin-btn-danger {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error);
}

.admin-btn-success {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
}

.admin-btn:hover {
    opacity: 0.9;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.pagination a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-main);
}

.pagination .active {
    background: var(--gold-gradient);
    color: #000;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-main);
}

/* Utilities */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 16px; }
