/* MultiHub - Main Stylesheet */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #0ea5e9;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #1e293b;
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
    --transition: all 0.2s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.6;
    min-height: 100vh;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,.95);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.25rem;
}
.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    padding: 8px 16px;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: var(--gray-100);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}
.lang-switch { position: relative; }
.lang-btn {
    background: none;
    border: 1px solid var(--gray-300);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--gray-600);
}
.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 120px;
    z-index: 50;
}
.lang-switch:hover .lang-dropdown { display: block; }
.lang-dropdown a {
    display: block;
    padding: 8px 16px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9rem;
}
.lang-dropdown a:hover, .lang-dropdown a.active {
    background: var(--gray-100);
    color: var(--primary);
}

.user-menu { position: relative; }
.user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}
.user-btn:hover { background: var(--gray-100); }
.avatar-sm { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.user-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    z-index: 50;
}
.user-menu:hover .user-dropdown { display: block; }
.user-dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9rem;
}
.user-dropdown a:hover { background: var(--gray-100); color: var(--primary); }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: white;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline {
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-success { background: var(--success); color: white; }
.btn-danger { background: var(--danger); color: white; }
.btn-warning { background: var(--warning); color: white; }
.btn-sm { padding: 6px 14px; font-size: 0.85rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}
.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--gray-800);
    background: white;
    transition: var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
.form-textarea { min-height: 100px; resize: vertical; }
.form-hint { font-size: 0.8rem; color: var(--gray-500); margin-top: 4px; }
.form-error { font-size: 0.8rem; color: var(--danger); margin-top: 4px; }

/* Cards */
.card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); }
.card-body { padding: 20px; }
.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
    font-weight: 600;
}
.card-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

/* Grid */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Section */
.section { padding: 60px 0; }
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 32px;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}
.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}
.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; }
.hero .btn-primary {
    background: white;
    color: var(--primary);
    font-weight: 600;
}
.hero .btn-primary:hover { background: var(--gray-100); }
.hero .btn-outline {
    border-color: rgba(255,255,255,.4);
    color: white;
}
.hero .btn-outline:hover {
    background: rgba(255,255,255,.15);
    border-color: white;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.stat-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    text-align: center;
}
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}
.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Site Card */
.site-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}
.site-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.site-card-snapshot {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--gray-100);
}
.site-card-body { padding: 16px; }
.site-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.site-card-icon { width: 24px; height: 24px; border-radius: 6px; object-fit: cover; }
.site-card-url {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.site-card-desc {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.site-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray-500);
}
.site-card-deposit {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--success);
    font-weight: 500;
}
.site-card-deposit.none { color: var(--gray-400); }

/* Product Card */
.product-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.product-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--gray-100);
}
.product-card-body { padding: 16px; }
.product-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.product-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Rating */
.rating { display: inline-flex; align-items: center; gap: 4px; }
.rating-stars { color: #fbbf24; font-size: 0.9rem; }
.rating-count { color: var(--gray-500); font-size: 0.8rem; }

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
}
.badge-success { background: #dcfce7; color: #166534; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-info { background: #dbeafe; color: #1e40af; }
.badge-pending { background: var(--gray-100); color: var(--gray-600); }

/* Table */
.table-wrap { overflow-x: auto; }
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
th, td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}
th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-700);
    white-space: nowrap;
}
tr:hover td { background: var(--gray-50); }

/* Flash Messages */
.flash {
    padding: 12px 0;
    font-size: 0.9rem;
    text-align: center;
}
.flash-success { background: #dcfce7; color: #166534; }
.flash-error { background: #fee2e2; color: #991b1b; }

/* Auth Pages */
.auth-page {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.auth-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    width: 100%;
    max-width: 440px;
}
.auth-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}
.auth-card .subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 32px;
    font-size: 0.9rem;
}
.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--gray-400);
    font-size: 0.85rem;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}
.oauth-buttons { display: flex; flex-direction: column; gap: 10px; }
.oauth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: white;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}
.oauth-btn:hover { border-color: var(--gray-400); background: var(--gray-50); }
.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--gray-500);
}
.auth-footer a { color: var(--primary); text-decoration: none; font-weight: 500; }

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 32px;
}
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.pagination .active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Review */
.review-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.review-avatar { width: 36px; height: 36px; border-radius: 50%; }
.review-user { font-weight: 600; font-size: 0.9rem; }
.review-date { font-size: 0.8rem; color: var(--gray-400); }
.review-content { font-size: 0.9rem; color: var(--gray-700); line-height: 1.6; }

/* Report Form */
.report-form { max-width: 500px; }

/* Dashboard */
.dashboard-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    min-height: calc(100vh - 64px);
}
.dashboard-sidebar {
    background: white;
    border-right: 1px solid var(--gray-200);
    padding: 24px 16px;
}
.dashboard-sidebar .nav-item {
    display: block;
    padding: 10px 16px;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
    transition: var(--transition);
}
.dashboard-sidebar .nav-item:hover,
.dashboard-sidebar .nav-item.active {
    background: var(--gray-100);
    color: var(--primary);
}
.dashboard-content { padding: 24px 0; }

/* TG Group Badge */
.tg-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #0088cc;
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}
.tg-badge:hover { background: #006da4; }

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 8px;
    transition: var(--transition);
}
.footer-col a:hover { color: white; }
.footer-col p { font-size: 0.85rem; line-height: 1.6; }
.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}

/* Main Content */
.main-content { min-height: calc(100vh - 64px - 300px); }

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}
.empty-state-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3 { margin-bottom: 8px; color: var(--gray-700); }

/* Detail Page */
.detail-hero {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 40px 0;
}
.detail-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.detail-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    object-fit: cover;
    flex-shrink: 0;
}
.detail-info h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.detail-url { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 8px; }
.detail-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Search */
.search-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}
.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}
.search-input:focus { outline: none; border-color: var(--primary); }

/* Dashboard Section */
.dashboard-section {
    padding: 0;
}
.dashboard-section h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}
.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.dashboard-header h1 {
    margin-bottom: 0;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

/* Text Utilities */
.text-muted { color: var(--gray-500); }
.text-sm { font-size: 0.85rem; }

/* Shop Info Card */
.shop-info-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    padding: 24px;
    margin-bottom: 24px;
}
.shop-info-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}
.shop-info-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.shop-info-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}
.shop-info-header p {
    font-size: 0.9rem;
    color: var(--gray-500);
}
.shop-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}
.shop-stats-grid .stat-item {
    text-align: center;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
}
.shop-actions {
    display: flex;
    gap: 12px;
}

/* Table Responsive */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.table-responsive .table {
    min-width: 600px;
}

/* Form Container */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--gray-200);
}
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.form-row {
    display: flex;
    gap: 16px;
}
.form-row .form-group {
    flex: 1;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--gray-500);
}
.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

/* Order Detail */
.order-detail {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--gray-200);
}
.order-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}
.order-info-card {
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 20px;
}
.order-info-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gray-700);
}
.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
}
.info-row:last-child {
    border-bottom: none;
}
.info-label {
    color: var(--gray-500);
    font-size: 0.9rem;
}
.info-value {
    font-weight: 500;
}
.info-content {
    white-space: pre-wrap;
    line-height: 1.6;
}
.order-actions {
    display: flex;
    gap: 12px;
}

/* Deposit */
.deposit-info {
    margin-bottom: 24px;
}
.deposit-balance {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--gray-200);
    text-align: center;
}
.deposit-balance h3 {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}
.balance-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}
.deposit-instructions {
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-top: 16px;
}
.deposit-instructions h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.deposit-address {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    margin: 12px 0;
}
.deposit-address code {
    flex: 1;
    font-family: monospace;
    font-size: 0.9rem;
    word-break: break-all;
}

/* OAuth */
.oauth-section {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--gray-200);
}
.oauth-providers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}
.oauth-provider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
}
.oauth-provider-name {
    font-weight: 500;
}

/* Current File */
.current-file {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--gray-500);
}
.current-images {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.active { display: flex; }
    .nav-right { margin-left: 0; flex-direction: column; width: 100%; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.8rem; }
    .detail-header { flex-direction: column; }
    .dashboard-layout { grid-template-columns: 1fr; }
    .dashboard-sidebar { display: none; }
}