/* ===== IMPORTS & RESET ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+Georgian:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --bg-primary: #F0F4F8;
    --bg-secondary: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.75);
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #a0aec0;
    --accent-primary: #4F46E5;
    --accent-secondary: #0EA5E9;
    --accent-gradient: linear-gradient(135deg, #4F46E5 0%, #0EA5E9 100%);
    --danger: #DC2626;
    --danger-gradient: linear-gradient(135deg, #DC2626 0%, #F59E0B 100%);
    --success: #10B981;
    --success-gradient: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    --warning: #F59E0B;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.08), 0 6px 10px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.1), 0 10px 15px rgba(0,0,0,0.06);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans Georgian', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== BACKGROUND DECORATION ===== */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

/* ===== HEADER ===== */
.header {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 24px;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.logo-text {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.logo-text span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.btn-danger {
    background: var(--danger-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(153, 27, 27, 0.3);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-success {
    background: var(--success-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(79, 70, 229, 0.08);
    color: var(--accent-primary);
}

.btn-ghost:hover {
    background: rgba(79, 70, 229, 0.15);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-md);
}

/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 60px 24px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero h1 span {
    background: var(--danger-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ===== SEARCH ===== */
.search-container {
    max-width: 600px;
    margin: 0 auto 48px;
    padding: 0 24px;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-xl), 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.search-box .search-icon {
    padding: 0 16px 0 20px;
    color: var(--text-muted);
    font-size: 18px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 0;
    font-family: inherit;
    font-size: 15px;
    background: transparent;
    color: var(--text-primary);
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box button {
    padding: 12px 24px;
    margin: 6px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    opacity: 0.9;
}

/* ===== STATS ===== */
.stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    padding: 0 24px;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--bg-card);
    padding: 20px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 160px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

/* ===== GRID ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.scammer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    padding-bottom: 80px;
}

/* ===== SCAMMER CARD ===== */
.scammer-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.scammer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.scammer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--danger-gradient);
    opacity: 0;
    transition: var(--transition);
}

.scammer-card:hover::after {
    opacity: 1;
}

.card-photo {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: linear-gradient(135deg, #EBF0FF 0%, #F5E6FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-photo .no-photo {
    font-size: 64px;
    opacity: 0.3;
}

.card-body {
    padding: 20px 24px 24px;
}

.card-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.card-field {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(220, 38, 38, 0.08);
    color: var(--danger);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.card-info-item .icon {
    font-size: 14px;
    width: 20px;
    text-align: center;
    opacity: 0.6;
}

.card-date {
    padding: 12px 24px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    color: var(--text-secondary);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: linear-gradient(135deg, #EBF0FF 0%, #F5E6FF 100%);
}

.modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-photo .no-photo-lg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    opacity: 0.2;
}

.modal-body {
    padding: 32px;
}

.modal-name {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.modal-field-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(220, 38, 38, 0.08);
    color: var(--danger);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.modal-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.detail-item {
    background: var(--bg-primary);
    padding: 16px;
    border-radius: var(--radius-md);
}

.detail-item.full-width {
    grid-column: 1 / -1;
}

.detail-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    word-break: break-word;
}

.modal-description {
    background: var(--bg-primary);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border-left: 4px solid var(--accent-primary);
}

.modal-description h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.modal-description p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    white-space: pre-wrap;
}

/* ===== SCREENSHOTS SECTION ===== */
.screenshots-section {
    margin-top: 24px;
}

.screenshots-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.screenshot-thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.screenshot-thumb:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.screenshot-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== SUBMISSION FORM ===== */
.submit-section {
    padding: 80px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.submit-section > h2 {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
}

.submit-section > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 15px;
}

.form-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group label .optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 12px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    background: white;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* File Upload */
.file-upload {
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-primary);
    position: relative;
}

.file-upload:hover {
    border-color: var(--accent-primary);
    background: rgba(79, 70, 229, 0.03);
}

.file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload .upload-icon {
    font-size: 36px;
    margin-bottom: 8px;
    opacity: 0.4;
}

.file-upload .upload-text {
    font-size: 14px;
    color: var(--text-muted);
}

.file-upload .upload-text strong {
    color: var(--accent-primary);
}

.file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.file-preview-item {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 40px 24px;
    color: var(--text-muted);
    font-size: 13px;
    border-top: 1px solid var(--border);
    margin-top: 60px;
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    background: var(--bg-card);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    animation: slideIn 0.3s ease, slideOut 0.3s ease 2.7s forwards;
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left-color: var(--danger);
    border-left-color: #DC2626;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 80px 24px;
    grid-column: 1 / -1;
}

.empty-state .empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.empty-state p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

/* ===== ADMIN STYLES ===== */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--bg-card);
    border-right: 1px solid var(--border);
    padding: 24px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
}

.admin-sidebar .sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    text-decoration: none;
    color: var(--text-primary);
}

.admin-sidebar .sidebar-logo .logo-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.admin-sidebar .sidebar-logo span {
    font-weight: 700;
    font-size: 16px;
}

.sidebar-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(79, 70, 229, 0.08);
    color: var(--accent-primary);
}

.sidebar-nav .badge {
    margin-left: auto;
    background: var(--danger);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    min-width: 22px;
    text-align: center;
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 32px;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.admin-header h1 {
    font-size: 24px;
    font-weight: 800;
}

/* ===== ADMIN CARDS ===== */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.admin-stat {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.admin-stat .stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.admin-stat .stat-icon.blue {
    background: rgba(79, 70, 229, 0.1);
}

.admin-stat .stat-icon.red {
    background: rgba(252, 92, 125, 0.1);
}

.admin-stat .stat-icon.green {
    background: rgba(56, 217, 169, 0.1);
}

/* ===== ADMIN TABLE ===== */
.table-container {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.table-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.table-header h2 {
    font-size: 18px;
    font-weight: 700;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-primary);
}

.admin-table td {
    padding: 16px 24px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover {
    background: rgba(79, 70, 229, 0.02);
}

.table-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--bg-primary);
}

.table-actions {
    display: flex;
    gap: 6px;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.status-badge.published {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

/* ===== LOGIN PAGE ===== */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 48px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.login-card .login-logo {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.login-card h1 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.login-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.login-card .form-group {
    text-align: left;
}

.error-msg {
    background: rgba(252, 92, 125, 0.1);
    color: var(--danger);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    margin-bottom: 20px;
}

.success-msg {
    background: rgba(56, 217, 169, 0.1);
    color: #2d9f7f;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    margin-bottom: 20px;
}

/* ===== SUBMISSION REVIEW CARD ===== */
.review-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.review-card-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border);
}

.review-card-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    object-fit: cover;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.review-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.review-card-info h3 {
    font-size: 16px;
    font-weight: 700;
}

.review-card-info .date {
    font-size: 12px;
    color: var(--text-muted);
}

.review-card-body {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.review-card-body .detail-item {
    background: var(--bg-primary);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}

.review-card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    background: var(--bg-primary);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scammer-card {
    animation: fadeInUp 0.5s ease forwards;
}

.scammer-card:nth-child(1) { animation-delay: 0.05s; }
.scammer-card:nth-child(2) { animation-delay: 0.1s; }
.scammer-card:nth-child(3) { animation-delay: 0.15s; }
.scammer-card:nth-child(4) { animation-delay: 0.2s; }
.scammer-card:nth-child(5) { animation-delay: 0.25s; }
.scammer-card:nth-child(6) { animation-delay: 0.3s; }
.scammer-card:nth-child(7) { animation-delay: 0.35s; }
.scammer-card:nth-child(8) { animation-delay: 0.4s; }
.scammer-card:nth-child(9) { animation-delay: 0.45s; }

/* ===== RESPONSIVE ===== */

/* --- Tablet Landscape (1024px) --- */
@media (max-width: 1024px) {
    .scammer-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .admin-sidebar {
        width: 220px;
    }
    
    .admin-main {
        margin-left: 220px;
        padding: 24px;
    }
    
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Tablet Portrait / Small Laptop (768px) --- */
@media (max-width: 768px) {
    /* Header */
    .header {
        padding: 0 12px;
    }
    
    .header-inner {
        height: 60px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .logo-text {
        font-size: 17px;
    }
    
    .header-actions .btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .header-actions .btn span.hide-mobile {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 40px 16px 24px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    /* Search */
    .search-container {
        margin-bottom: 32px;
        padding: 0 12px;
    }

    /* Stats */
    .stats {
        gap: 10px;
        margin-bottom: 32px;
        padding: 0 12px;
    }
    
    .stat-card {
        padding: 14px 20px;
        min-width: 110px;
    }
    
    .stat-number {
        font-size: 24px;
    }

    /* Grid */
    .scammer-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 16px;
    }

    .container {
        padding: 0 12px;
    }

    /* Cards */
    .card-photo {
        height: 200px;
    }

    /* Modal */
    .modal-overlay {
        padding: 12px;
    }

    .modal {
        max-height: 95vh;
        border-radius: var(--radius-lg);
    }

    .modal-photo {
        height: 220px;
    }
    
    .modal-details {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .modal-body {
        padding: 24px;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 24px;
        border-radius: var(--radius-lg);
    }

    .submit-section {
        padding: 48px 12px;
    }

    .submit-section > h2 {
        font-size: 24px;
    }

    /* Admin */
    .admin-sidebar {
        position: fixed;
        left: -280px;
        width: 260px;
        z-index: 200;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-xl);
    }
    
    .admin-sidebar.open {
        left: 0;
    }
    
    .admin-main {
        margin-left: 0;
        padding: 16px;
    }
    
    .admin-header {
        margin-bottom: 20px;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .admin-header h1 {
        font-size: 20px;
    }

    .admin-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .admin-stat {
        padding: 16px;
    }

    /* Admin Table → Card layout on mobile */
    .admin-table thead {
        display: none;
    }

    .admin-table,
    .admin-table tbody,
    .admin-table tr,
    .admin-table td {
        display: block;
        width: 100%;
    }

    .admin-table tr {
        padding: 16px;
        border-bottom: 1px solid var(--border);
        position: relative;
    }

    .admin-table td {
        padding: 4px 0;
        border: none;
        font-size: 14px;
    }

    .admin-table td:first-child {
        float: left;
        margin-right: 12px;
    }

    .admin-table td:last-child {
        padding-top: 12px;
    }

    .table-actions {
        justify-content: flex-start;
    }

    /* Review cards */
    .review-card-body {
        grid-template-columns: 1fr;
        padding: 16px;
    }
    
    .review-card-header {
        padding: 16px;
        flex-wrap: wrap;
    }

    .review-card-footer {
        padding: 12px 16px;
        flex-wrap: wrap;
    }

    .review-card-footer .btn {
        flex: 1;
        justify-content: center;
    }
}

/* --- Phone (480px) --- */
@media (max-width: 480px) {
    .hero {
        padding: 32px 12px 20px;
    }
    
    .hero h1 {
        font-size: 24px;
        letter-spacing: -0.5px;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Search */
    .search-box {
        border-radius: var(--radius-md);
    }
    
    .search-box input {
        padding: 12px 0;
        font-size: 14px;
    }
    
    .search-box button {
        padding: 10px 14px;
        font-size: 12px;
    }

    .search-box .search-icon {
        padding: 0 10px 0 14px;
        font-size: 16px;
    }

    /* Stats */
    .stats {
        justify-content: center;
    }
    
    .stat-card {
        min-width: 100px;
        padding: 12px 16px;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 11px;
    }

    /* Grid — single column */
    .scammer-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Card */
    .scammer-card {
        border-radius: var(--radius-lg);
    }

    .card-photo {
        height: 180px;
    }
    
    .card-body {
        padding: 16px;
    }
    
    .card-name {
        font-size: 16px;
    }

    .card-date {
        padding: 10px 16px;
    }

    /* Modal */
    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .modal {
        max-height: 100vh;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        max-width: 100%;
    }

    .modal-photo {
        height: 180px;
    }

    .modal-body {
        padding: 16px;
    }
    
    .modal-name {
        font-size: 20px;
    }

    .modal-field-tag {
        font-size: 12px;
        padding: 4px 12px;
    }

    .detail-item {
        padding: 12px;
    }

    .screenshots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    /* Submit Form */
    .submit-section {
        padding: 40px 8px;
    }

    .submit-section > h2 {
        font-size: 20px;
    }
    
    .form-card {
        padding: 16px;
        border-radius: var(--radius-md);
    }
    
    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
        font-size: 14px;
    }

    .file-upload {
        padding: 20px 16px;
    }
    
    .file-upload .upload-icon {
        font-size: 28px;
    }

    .file-upload .upload-text {
        font-size: 13px;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 24px 12px;
        font-size: 12px;
    }

    /* Admin */
    .admin-main {
        padding: 12px;
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-form-container {
        padding: 16px;
    }

    .table-header {
        padding: 14px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* Login */
    .login-card {
        padding: 32px 20px;
    }
    
    .login-card h1 {
        font-size: 20px;
    }
}

/* --- Very Small Phone (360px) --- */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 20px;
    }

    .header-actions .btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .stat-card {
        min-width: 80px;
        padding: 10px 12px;
    }

    .stat-number {
        font-size: 18px;
    }

    .card-photo {
        height: 160px;
    }

    .modal-photo {
        height: 150px;
    }

    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ===== ADMIN FORM ===== */
.admin-form-container {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.admin-form-container h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

/* ===== MOBILE HAMBURGER ===== */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--accent-gradient);
    color: white;
    border-radius: var(--radius-md);
    font-size: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    transition: var(--transition);
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 199;
}

.sidebar-overlay.active {
    display: block;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
}
