/* ========================================
   LV RECORDS — Modern Rap Beat Platform
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #0a0a0f;
    --surface: #12121a;
    --surface-light: #1a1a28;
    --accent: #8b5cf6;
    --accent-glow: rgba(139, 92, 246, 0.4);
    --accent2: #06b6d4;
    --accent2-glow: rgba(6, 182, 212, 0.3);
    --text: #94a3b8;
    --text-bright: #f1f5f9;
    --border: rgba(255, 255, 255, 0.06);
    --glass: rgba(255, 255, 255, 0.03);
    --danger: #ef4444;
    --ok: #22c55e;
    --radius: 16px;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ---- Animated Background ---- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 92, 246, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(6, 182, 212, 0.1), transparent);
    z-index: -2;
    pointer-events: none;
}

/* Floating orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: var(--accent); top: -10%; left: -10%; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: var(--accent2); bottom: -10%; right: -5%; animation-delay: -7s; }
.orb-3 { width: 300px; height: 300px; background: #ec4899; top: 50%; left: 50%; animation-delay: -14s; opacity: 0.2; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 30px) scale(1.02); }
}

/* ---- Container ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ---- Topbar ---- */
header.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

header.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    flex-wrap: nowrap;
}

.brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-bright);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.brand-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

nav { display: flex; align-items: center; gap: 8px; }

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 10px;
    transition: all 0.2s;
}

nav a:hover {
    color: var(--text-bright);
    background: rgba(255, 255, 255, 0.06);
}

/* ---- Hero ---- */
.hero-section {
    position: relative;
    padding: 100px 0 60px;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('hero-bg.png') center/cover no-repeat;
    opacity: 0.15;
    z-index: -1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge::before {
    content: '🔥';
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--text-bright);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 560px;
    margin: 0 auto;
    opacity: 0.6;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

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

/* ---- Genre Filters ---- */
.genre-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 32px 0;
    flex-wrap: wrap;
}

.chip {
    padding: 10px 22px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.25s;
}

.chip:hover {
    color: var(--text-bright);
    background: var(--surface-light);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.chip.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* ---- Beat Grid ---- */
.beat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding-bottom: 80px;
}

/* ---- Beat Card ---- */
.beat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.beat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px var(--accent-glow);
}

.beat-card .artwork {
    position: relative;
    overflow: hidden;
}

.beat-card .artwork img {
    width: 100%;
    aspect-ratio: 1;
    display: block;
    object-fit: cover;
    transition: transform 0.5s;
}

.beat-card:hover .artwork img {
    transform: scale(1.05);
}

.beat-card .artwork .price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 5;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.beat-card .artwork .play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.beat-card:hover .artwork .play-overlay {
    opacity: 1;
}

.play-btn-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--accent-glow);
    transition: transform 0.2s;
}

.play-btn-icon:hover {
    transform: scale(1.1);
}

.play-btn-icon::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 18px solid #fff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 4px;
}

.beat-card .info {
    padding: 12px;
}

.beat-card .tag {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.beat-card .beat-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 12px;
}

.beat-card .player-row {
    margin-bottom: 16px;
}

.beat-card audio {
    width: 100%;
    height: 36px;
    border-radius: 8px;
    opacity: 0.7;
}

.beat-card audio:hover { opacity: 1; }

.beat-card .bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #6d28d9);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-bright);
}

.btn-outline:hover {
    background: var(--surface-light);
    border-color: var(--accent);
}

.btn-danger {
    background: var(--danger);
    color: #fff;
}

.btn-ghost {
    background: var(--surface-light);
    border: 1px solid var(--border);
    color: var(--text-bright);
}

/* ---- Checkout Page ---- */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: start;
    padding-bottom: 80px;
}

.checkout-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.checkout-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-card h3 .step-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    font-size: 0.75rem;
}

.qr-box {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.qr-box img { max-width: 220px; height: auto; }

.price-display {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    margin-top: 16px;
}

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

.form-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--text-bright);
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-field input[type="file"] { padding: 12px; }

/* ---- Footer ---- */
footer {
    border-top: 1px solid var(--border);
    padding: 40px 0 100px;
    text-align: center;
}

footer p {
    font-size: 0.85rem;
    opacity: 0.4;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    transition: all 0.25s;
}

.social-links a:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* ---- WhatsApp Header Button ---- */
.wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #25d366;
    color: #fff !important;
    border-radius: 12px;
    transition: all 0.25s;
}

.wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

/* ---- Custom Audio Player ---- */
.custom-player {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
}

.cp-play {
    background: var(--accent);
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.cp-play:hover { transform: scale(1.1); }

.beat-card.playing .cp-play {
    background: var(--danger);
}

.cp-progress {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}

.cp-bar { height: 100%; position: relative; }

.cp-filled {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 4px;
    transition: width 0.3s linear;
}

.cp-time {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    min-width: 32px;
    text-align: right;
}

/* ---- Mobile Bottom Nav ---- */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 8px 0;
    padding-bottom: env(safe-area-inset-bottom, 8px);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 0;
    transition: color 0.2s;
}

.mobile-nav-item.active { color: var(--accent); }
.mobile-nav-item:hover { color: var(--text-bright); }

@media (max-width: 768px) {
    .mobile-nav {
        display: flex;
        justify-content: space-around;
    }
    nav { display: none; }
}

/* ---- Reels Page (2-col grid) ---- */
.reels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-bottom: 100px;
}

.reel-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: all 0.3s;
}

.reel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.reel-card.reel-playing {
    box-shadow: 0 0 0 2px var(--accent), 0 12px 40px var(--accent-glow);
}

.reel-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(0,0,0,0.85) 100%);
}

.reel-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.reel-info { flex: 1; min-width: 0; }

.reel-genre {
    display: inline-block;
    background: rgba(139, 92, 246, 0.25);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.reel-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reel-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
}

.reel-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 10px;
    flex-shrink: 0;
}

.reel-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.reel-action-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.reel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 3;
}

.reel-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transition: width 0.3s linear;
}


/* ---- Success State ---- */
.success-screen {
    text-align: center;
    padding: 100px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ok), #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .checkout-grid { grid-template-columns: 1fr; }
    .beat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .hero-section { padding: 60px 0 30px; }
    .hero-title { letter-spacing: -1px; font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .container { padding: 0 12px; }
    header.topbar .container { height: 56px; }
    .brand { font-size: 1rem; gap: 6px; }
    .brand-dot { width: 8px; height: 8px; }
    .genre-bar { gap: 6px; padding: 16px 0; }
    .chip { padding: 6px 12px; font-size: 0.75rem; }
    footer { padding-bottom: 100px; }
    .reels-grid { gap: 10px; }
    .beat-card .info { padding: 12px; }
    .beat-card .beat-title { font-size: 0.9rem; }
    .beat-card .beat-price { font-size: 1.1rem; }
    .beat-card .tag { font-size: 0.6rem; padding: 3px 8px; }
    .btn-primary { padding: 8px 16px; font-size: 0.8rem; }
    .beat-card .bottom-row { padding-top: 10px; }
    .play-btn-icon { width: 44px; height: 44px; }
    .play-btn-icon::after { border-left-width: 12px; border-top-width: 7px; border-bottom-width: 7px; margin-left: 3px; }
    .custom-player { padding: 8px 10px; gap: 8px; }
    .cp-play { width: 28px; height: 28px; }
    .wa-btn { width: 36px; height: 36px; }
    .wa-btn svg { width: 18px; height: 18px; }
}

@media (max-width: 480px) {
    .beat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .beat-card .artwork img { aspect-ratio: 1; }
}

/* ---- Admin Panel ---- */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.admin-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-bright);
    margin: 0;
}

.admin-header .admin-user {
    font-size: 0.85rem;
    color: var(--text);
}

.panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
}

.panel h2 { margin-top: 0; color: var(--text-bright); font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; }
.panel h3 { margin-top: 0; color: var(--text-bright); font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; }

label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

input, select, textarea {
    width: 100%;
    background: var(--surface-light);
    border: 1px solid var(--border);
    color: var(--text-bright);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 14px;
    font-family: inherit;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

table { width: 100%; border-collapse: collapse; }
th, td { border-bottom: 1px solid var(--border); padding: 12px; text-align: left; vertical-align: top; }
th { color: var(--text-bright); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }

.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 16px; font-weight: 600; }
.alert-success { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); color: var(--ok); }
.alert-error { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); color: var(--danger); }

.img-thumb { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; border: 1px solid var(--border); }
.qr { max-width: 260px; width: 100%; border-radius: 14px; border: 1px solid var(--border); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.auth-card { max-width: 440px; margin: 60px auto; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat { background: var(--surface-light); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.stat .label { color: var(--text); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.stat .value { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; margin-top: 8px; color: var(--text-bright); }
.table-wrap { overflow-x: auto; }
.small { font-size: 0.75rem; }
.inline-form { display: inline; }
.w-120 { width: 120px; }
.w-160 { width: 160px; }
.actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.admin-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.admin-nav .chip { font-size: 0.8rem; }
.badge { display: inline-block; border-radius: 999px; padding: 4px 12px; font-size: 0.75rem; font-weight: 700; }
.badge-pending { background: rgba(245, 159, 0, 0.15); border: 1px solid rgba(245, 159, 0, 0.3); color: #f59e0b; }
.badge-approved { background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.3); color: var(--ok); }
.badge-rejected { background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.3); color: var(--danger); }

@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; }
}
