/* ═══════════════════════════════════════════════════════════
   FMRP Lead Site — Shared Stylesheet
   Matches examplesite dark blue/orange minimal aesthetic
═══════════════════════════════════════════════════════════ */

:root {
    --orange: #FF8C42;
    --orange-dark: #e07330;
    --blue: #0D7FFF;
    --blue-light: #3B9AFF;
    --dark: #0A1628;
    --dark-2: #0e1f38;
    --dark-3: #132944;
    --border: rgba(255, 255, 255, 0.08);
    --border-blue: rgba(13, 127, 255, 0.25);
    --text: #F0F0F0;
    --text-dim: rgba(240, 240, 240, 0.65);
    --radius: 10px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
}

body.admin-bg {
    background: #090f1c;
}

a {
    color: var(--blue-light);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo-accent {
    color: var(--orange);
}

.logo-link {
    color: inherit;
}

.logo-link:hover {
    text-decoration: none;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.header-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255, 140, 66, 0.4));
}

.admin-badge {
    display: inline-block;
    margin-left: 0.6rem;
    padding: 0.1rem 0.5rem;
    background: var(--orange);
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    vertical-align: middle;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text);
    text-decoration: none;
}

.discord-link:hover {
    color: #7289da;
}

.submit-link {
    color: var(--blue-light);
}

.submit-link:hover {
    color: #fff;
}

.btn-admin-login {
    padding: 0.45rem 1rem;
    background: transparent;
    border: 1px solid var(--orange);
    color: var(--orange);
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-admin-login:hover {
    background: var(--orange);
    color: #000;
}

.admin-user {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 500;
}

/* ─── VIDEO SECTION ──────────────────────────────────────── */
.video-section {
    padding: 2.5rem 1.5rem 0;
    background: var(--dark);
}

.video-outer {
    max-width: 1280px;
    margin: 0 auto;
}

/* 16:9 aspect ratio box */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ─── CONTENT SECTION ────────────────────────────────────── */
.content-section {
    padding: 3rem 1.5rem 4rem;
}

.content-container {
    max-width: 1280px;
    margin: 0 auto;
}

.content-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--orange);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Single wide column — fills horizontal space so text isn't as long vertically */
.content-text {
    margin-bottom: 2rem;
}

.content-text p {
    margin-bottom: 1.2rem;
    color: rgba(240, 240, 240, 0.88);
    font-size: 1rem;
    line-height: 1.8;
}

.highlight-box {
    background: rgba(255, 140, 66, 0.07);
    border-left: 3px solid var(--orange);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0.8rem;
}

.highlight-box p {
    margin-bottom: 0.8rem !important;
    font-size: 0.97rem !important;
}

.highlight-box p:last-child {
    margin-bottom: 0 !important;
}

.note-box {
    background: rgba(13, 127, 255, 0.07);
    border-left: 3px solid var(--blue-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
}

.disclaimer-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    font-size: 0.93rem !important;
    color: var(--text-dim);
}

.sign-off {
    margin-top: 0.5rem;
    color: var(--text-dim);
    font-style: italic;
}

.cta-section {
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(13, 127, 255, 0.06);
    border: 1px solid var(--border-blue);
    border-radius: 14px;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 0.8rem;
}

.cta-section p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: var(--orange);
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.btn-primary-large:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 140, 66, 0.35);
    text-decoration: none;
    color: #000;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.88rem;
}

/* ─── FORM SECTION ───────────────────────────────────────── */
.form-section {
    padding: 3rem 1.5rem 4rem;
}

.form-container {
    max-width: 720px;
    margin: 0 auto;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--orange);
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.form-header p {
    color: var(--text-dim);
    font-size: 0.97rem;
}

/* Success / Error banners */
.success-banner,
.error-banner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.success-banner {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.success-banner strong {
    color: #4ade80;
}

.error-banner {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.error-banner strong {
    color: #f87171;
}

.success-icon {
    font-size: 1.5rem;
    color: #4ade80;
    flex-shrink: 0;
}

.error-icon {
    font-size: 1.5rem;
    color: #f87171;
    flex-shrink: 0;
}

.success-banner p,
.error-banner p {
    margin: 0.2rem 0 0;
    color: var(--text-dim);
    font-size: 0.88rem;
}

/* Form groups */
.form-group {
    margin-bottom: 1.6rem;
}

.form-label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}

.required {
    color: var(--orange);
}

.optional {
    color: var(--text-dim);
    font-weight: 400;
    font-size: 0.85rem;
}

.input-hint {
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 7px;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 0.97rem;
    transition: border 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--blue-light);
    box-shadow: 0 0 0 3px rgba(59, 154, 255, 0.15);
}

.form-input.input-invalid,
.form-select.input-invalid,
.form-textarea.input-invalid {
    border-color: rgba(239, 68, 68, 0.7);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaa' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.5rem;
}

.form-select option {
    background: #0e1f38;
    color: var(--text);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.7;
}

.field-error {
    display: none;
    font-size: 0.82rem;
    color: #f87171;
    margin-top: 0.35rem;
}

/* File upload */
.file-upload-wrapper {
    position: relative;
}

.form-file {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    background: var(--dark-2);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 7px;
    cursor: pointer;
    font-size: 0.93rem;
    color: var(--text-dim);
    transition: border-color 0.2s, background 0.2s;
}

.file-upload-label:hover {
    border-color: var(--blue-light);
    background: var(--dark-3);
    color: var(--text);
}

.file-icon {
    font-size: 1.2rem;
}

/* Submit button */
.form-actions {
    margin-top: 2rem;
}

.btn-submit {
    width: 100%;
    padding: 0.85rem;
    background: var(--orange);
    color: #000;
    border: none;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.btn-submit:hover:not(:disabled) {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ─── ADMIN LOGIN ─────────────────────────────────────────── */
.login-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card {
    width: 100%;
    max-width: 400px;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.login-subtitle {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.login-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 0.65rem 1rem;
    border-radius: 7px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.login-back {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.88rem;
}

/* ─── ADMIN DASHBOARD ────────────────────────────────────── */
.admin-section {
    padding: 1.5rem 1.5rem 4rem;
}

.admin-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Stats bar */
.stats-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    min-width: 130px;
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Filter bar */
.filter-bar {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
    flex-wrap: wrap;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
    min-width: 160px;
}

.filter-label {
    font-size: 0.78rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.filter-input,
.filter-select {
    padding: 0.5rem 0.75rem;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.2s;
    width: 100%;
}

.filter-input:focus,
.filter-select:focus {
    border-color: var(--blue-light);
}

.filter-select {
    cursor: pointer;
}

.filter-select option {
    background: #0e1f38;
}

.filter-actions {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    padding-bottom: 1px;
}

.btn-filter {
    padding: 0.5rem 1rem;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-filter:hover {
    background: var(--blue-light);
}

.btn-filter-clear {
    padding: 0.5rem 0.75rem;
    background: transparent;
    color: var(--text-dim);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-filter-clear:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text);
}

/* Action bar */
.action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.action-left,
.action-right {
    display: flex;
    gap: 0.5rem;
}

.btn-action {
    padding: 0.45rem 0.9rem;
    background: transparent;
    color: var(--text-dim);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-action:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text);
}

.btn-export {
    padding: 0.45rem 0.9rem;
    border: none;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-export.csv {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.btn-export.csv:hover {
    background: rgba(34, 197, 94, 0.25);
}

.btn-export.json {
    background: rgba(59, 154, 255, 0.15);
    color: var(--blue-light);
    border: 1px solid rgba(59, 154, 255, 0.3);
}

.btn-export.json:hover {
    background: rgba(59, 154, 255, 0.25);
}

/* Table */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--dark-2);
}

.table-loading,
.table-empty {
    padding: 2.5rem;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.leads-table thead th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
    background: var(--dark-3);
    white-space: nowrap;
}

th.sortable {
    cursor: pointer;
    user-select: none;
}

th.sortable:hover {
    color: var(--text);
}

th.sort-active {
    color: var(--orange);
}

.sort-icon {
    opacity: 0.5;
    font-size: 0.75rem;
}

.leads-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.leads-table tbody tr:last-child {
    border-bottom: none;
}

.leads-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.leads-table td {
    padding: 0.7rem 1rem;
    color: var(--text);
    vertical-align: middle;
}

.td-id {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.td-date {
    white-space: nowrap;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.mono {
    font-family: monospace;
    font-size: 0.88rem;
}

.td-name {
    font-weight: 500;
}

/* Type badges */
.type-badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.type-current_ocrp {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.type-former_ocrp {
    background: rgba(250, 204, 21, 0.12);
    color: #facc15;
    border: 1px solid rgba(250, 204, 21, 0.25);
}

.type-ocrp_enthusiast {
    background: rgba(59, 154, 255, 0.12);
    color: var(--blue-light);
    border: 1px solid rgba(59, 154, 255, 0.25);
}

.has-attachment {
    font-size: 0.83rem;
    color: var(--text-dim);
    white-space: nowrap;
}

.no-attachment {
    color: rgba(255, 255, 255, 0.2);
}

.td-actions {
    white-space: nowrap;
}

.btn-view {
    padding: 0.3rem 0.7rem;
    background: rgba(59, 154, 255, 0.12);
    color: var(--blue-light);
    border: 1px solid rgba(59, 154, 255, 0.25);
    border-radius: 5px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background 0.2s;
    margin-right: 0.4rem;
}

.btn-view:hover {
    background: rgba(59, 154, 255, 0.25);
}

.btn-delete {
    padding: 0.3rem 0.7rem;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.22);
    border-radius: 5px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-delete:hover {
    background: rgba(239, 68, 68, 0.22);
}

/* ─── MODALS ──────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    backdrop-filter: blur(4px);
}

.modal-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.modal-card-sm {
    max-width: 420px;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.modal-close:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.modal-body {
    padding: 1.5rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.detail-item,
.detail-full {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.85rem 1rem;
}

.detail-full {
    margin-bottom: 1rem;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.detail-value {
    font-size: 0.93rem;
    color: var(--text);
    word-break: break-word;
}

.detail-text {
    white-space: pre-wrap;
    line-height: 1.7;
    font-size: 0.92rem;
}

.attachment-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--blue-light);
    font-size: 0.92rem;
}

.attachment-link:hover {
    color: #fff;
}

.modal-footer {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
}

.btn-delete-modal {
    padding: 0.55rem 1.2rem;
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 7px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-delete-modal:hover {
    background: rgba(239, 68, 68, 0.25);
}

.btn-close-modal {
    padding: 0.55rem 1.2rem;
    background: transparent;
    color: var(--text-dim);
    border: 1px solid var(--border);
    border-radius: 7px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-close-modal:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .header-inner {
        padding: 0 1rem;
    }

    .nav-link {
        font-size: 0.82rem;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        gap: 0.75rem;
    }

    .stat-card {
        min-width: 0;
        flex: 1;
        padding: 0.75rem 1rem;
    }

    .filter-bar {
        gap: 0.6rem;
    }

    .filter-group {
        min-width: 140px;
    }

    .modal-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .header-nav {
        gap: 0.6rem;
    }

    .admin-badge {
        display: none;
    }

    .cta-section {
        padding: 1.5rem;
    }
}