/* ============================================================
   Quick Fresher Jobs — Premium Custom CSS
   ============================================================ */

/* CSS Variables */
:root {
    --primary: #6c63ff;
    --primary-dark: #4a42d1;
    --primary-light: rgba(108, 99, 255, 0.15);
    --secondary: #ff6b6b;
    --gold: #ffd700;
    --gold-dark: #ffab00;
    --gold-light: rgba(255, 215, 0, 0.15);
    --bg-dark: #070714;
    --bg-mid: #0f0c29;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --text-primary: #f0eeff;
    --text-secondary: rgba(240, 238, 255, 0.6);
    --text-muted: rgba(240, 238, 255, 0.35);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(108, 99, 255, 0.4);
    --success: #00d4aa;
    --warning: #ffab00;
    --danger: #ff6b6b;
    --shadow-glow: 0 0 40px rgba(108, 99, 255, 0.2);
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(108, 99, 255, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
    background-attachment: fixed;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.qfj-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background: rgba(7, 7, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.qfj-navbar.scrolled {
    background: rgba(7, 7, 20, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 68px;
    padding: 0 8px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.5);
}

.logo-icon svg { width: 20px; height: 20px; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; color: var(--text-primary); }
.logo-sub { font-size: 11px; color: var(--primary); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

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

.nav-link svg { width: 16px; height: 16px; }

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
    background: var(--primary-light);
}

.nav-link.active { color: var(--primary); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Coin Pill */
.coin-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-light);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    padding: 6px 14px 6px 10px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.coin-pill:hover { background: rgba(255, 215, 0, 0.25); transform: scale(1.03); }

.coin-icon { font-size: 18px; }
.coin-count { font-weight: 700; font-size: 15px; color: var(--gold); }
.coin-label { font-size: 11px; color: var(--text-muted); }

/* Nav Icon Btn */
.nav-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.nav-icon-btn svg { width: 18px; height: 18px; }
.nav-icon-btn:hover { color: var(--text-primary); border-color: var(--border-hover); background: var(--bg-card-hover); }

/* Notif Badge */
.notif-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: var(--danger);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 2px solid var(--bg-dark);
}

/* Notifications Dropdown */
.nav-notif-wrap { position: relative; }

.notif-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: 360px;
    background: #13111f;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), var(--shadow-glow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 100;
    overflow: hidden;
}

.notif-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }

.notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    font-size: 14px;
}

.mark-read-btn { font-size: 12px; color: var(--primary); }
.mark-read-btn:hover { opacity: 0.8; }

.notif-list { max-height: 300px; overflow-y: auto; }

.notif-item {
    display: flex;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.notif-item:hover { background: var(--bg-card); }
.notif-item.unread .notif-dot { background: var(--primary); }
.notif-dot { width: 8px; height: 8px; border-radius: 50%; background: transparent; border: 1px solid var(--border); margin-top: 6px; flex-shrink: 0; }
.notif-content { flex: 1; }
.notif-content strong { display: block; font-size: 13px; margin-bottom: 2px; }
.notif-content p { font-size: 12px; color: var(--text-secondary); margin: 0; }
.notif-time { font-size: 11px; color: var(--text-muted); margin-top: 4px; display: block; }
.notif-loading, .notif-empty { padding: 24px; text-align: center; color: var(--text-muted); font-size: 13px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.notif-empty svg { width: 32px; height: 32px; opacity: 0.4; }

/* Profile Dropdown */
.nav-profile-wrap { position: relative; }

.nav-profile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px 5px 5px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    cursor: pointer;
    transition: var(--transition);
}

.nav-profile-btn:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }

.profile-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: white;
}

.profile-name { font-size: 13px; font-weight: 600; }
.profile-arrow { width: 14px; height: 14px; color: var(--text-muted); }

.profile-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: 240px;
    background: #13111f;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 100;
    overflow: hidden;
}

.profile-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }

.profile-dd-header { padding: 16px; display: flex; align-items: center; gap: 12px; }
.profile-dd-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: white; flex-shrink: 0; }
.profile-dd-name { font-weight: 600; font-size: 14px; }
.profile-dd-level { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.level-dot { width: 8px; height: 8px; border-radius: 50%; }
.profile-dd-divider { height: 1px; background: var(--border); }

.profile-dd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
}

.profile-dd-item svg { width: 16px; height: 16px; }
.profile-dd-item:hover { color: var(--text-primary); background: var(--bg-card); }
.profile-dd-item.danger:hover { color: var(--danger); }

/* Nav Buttons */
.btn-ghost-nav {
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-ghost-nav:hover { color: var(--text-primary); border-color: var(--border-hover); }

.btn-primary-nav {
    padding: 8px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.4);
}

.btn-primary-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 25px rgba(108, 99, 255, 0.5); color: white; }

/* ============================================================
   COIN MISSION BAR
   ============================================================ */
.mission-bar-wrap {
    background: linear-gradient(90deg, rgba(108,99,255,0.07), rgba(255,215,0,0.05), rgba(108,99,255,0.07));
    border-bottom: 1px solid rgba(255,215,0,0.1);
    padding: 7px 0;
}

.mission-bar-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.mission-progress-block {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

.mission-divider {
    height: 14px;
    width: 1px;
    background: var(--border);
    margin-left: 4px;
}

.mission-bonus-text {
    font-size: 10px;
    color: var(--text-muted);
    white-space: nowrap;
}

.mission-pills-scroll {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
    padding-bottom: 1px;
}
.mission-pills-scroll::-webkit-scrollbar { display: none; }

@media (max-width: 767px) {
    .mission-progress-block { display: none; }
    .mission-bar-inner { padding: 0 12px; gap: 0; }
    .mission-pills-scroll { gap: 6px; }
    .earn-pill { font-size: 11px; padding: 4px 10px; }
}

/* Coin Mission Bar earn pills */
.earn-pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(108,99,255,0.2);
    background: rgba(108,99,255,0.1);
    color: #a89cff;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.earn-pill:hover {
    background: rgba(108,99,255,0.22);
    border-color: rgba(108,99,255,0.5);
    color: white;
    transform: translateY(-1px);
}
.earn-pill-active {
    background: rgba(0,212,170,0.12) !important;
    border-color: rgba(0,212,170,0.3) !important;
    color: var(--success) !important;
}

/* Guest Earn Coins Nav Link */
.earn-coins-link {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(108, 99, 255, 0.1)) !important;
    border: 1px solid rgba(255, 215, 0, 0.25) !important;
    color: var(--gold) !important;
    border-radius: 20px !important;
    padding: 6px 14px !important;
    font-weight: 600;
    animation: pulseGold 2.5s ease-in-out infinite;
}
.earn-coins-link:hover { background: rgba(255, 215, 0, 0.18) !important; color: var(--gold) !important; }

@keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
    50% { box-shadow: 0 0 12px 3px rgba(255, 215, 0, 0.2); }
}

.earn-badge {
    background: var(--gold);
    color: #1a1200;
    font-size: 9px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 2px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-btn svg { width: 20px; height: 20px; }

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav-link {
    padding: 12px 16px;
    font-size: 15px;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}

.mobile-nav-link:hover { color: var(--text-primary); background: var(--bg-card); }
.mobile-nav-link.danger:hover { color: var(--danger); }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .coin-label { display: none; }
    .profile-name { display: none; }
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-wrap { padding-top: 68px; min-height: 100vh; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(108, 99, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 99, 255, 0.15);
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #a89cff;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease;
}

.hero-badge-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: pulse 2s infinite; }

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.7s ease;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .gold-text {
    background: linear-gradient(135deg, #f7971e, #ffd200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease;
}

.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 800; color: var(--primary); display: block; }
.hero-stat-label { font-size: 13px; color: var(--text-muted); }

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease;
}

/* Hero Reward Card */
.hero-reward-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px;
    backdrop-filter: blur(20px);
    animation: floatCard 3s ease-in-out infinite;
    box-shadow: var(--shadow-glow);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.reward-card-title { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }

.coin-display {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.coin-big { font-size: 48px; }
.coin-info-num { font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 900; color: var(--gold); }
.coin-info-label { font-size: 13px; color: var(--text-muted); }

.reward-progress-wrap { margin-bottom: 16px; }
.reward-progress-label { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
.reward-progress-bar { height: 8px; background: var(--border); border-radius: 10px; overflow: hidden; }
.reward-progress-fill { height: 100%; border-radius: 10px; background: linear-gradient(90deg, var(--primary), var(--gold)); transition: width 1s ease; }

.gift-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.gift-mini-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    font-size: 12px;
    transition: var(--transition);
}

.gift-mini-card:hover { background: var(--primary-light); border-color: var(--border-hover); }
.gift-mini-brand { font-weight: 700; font-size: 13px; display: block; margin-bottom: 2px; }
.gift-mini-cost { color: var(--gold); font-size: 11px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-qfj-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.4);
}

.btn-qfj-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108, 99, 255, 0.5); color: white; }
.btn-qfj-primary svg { width: 18px; height: 18px; }

.btn-qfj-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-qfj-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.btn-qfj-outline svg { width: 18px; height: 18px; }

.btn-qfj-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #f7971e, #ffd200);
    color: #1a1200;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 210, 0, 0.3);
}

.btn-qfj-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255, 210, 0, 0.4); color: #1a1200; }

.btn-qfj-sm { padding: 8px 18px !important; font-size: 13px !important; }

/* ============================================================
   SECTION STYLES
   ============================================================ */
.section-header { margin-bottom: 40px; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    border: 1px solid rgba(108,99,255,0.2);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #a89cff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 12px;
}

.section-subtitle { font-size: 16px; color: var(--text-secondary); max-width: 500px; }

/* ============================================================
   JOB CARDS
   ============================================================ */
.job-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #764ba2);
    opacity: 0;
    transition: var(--transition);
}

.job-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--shadow-glow); }
.job-card:hover::before { opacity: 1; }

.job-card.featured { border-color: rgba(255, 215, 0, 0.2); }
.job-card.featured::before { background: linear-gradient(90deg, var(--gold), #f7971e); opacity: 1; }

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold-light);
    border: 1px solid rgba(255,215,0,0.3);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.job-card-header { display: flex; align-items: flex-start; gap: 14px; }

.company-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(108,99,255,0.3);
}

.job-info { flex: 1; min-width: 0; }
.job-title { font-weight: 700; font-size: 17px; margin-bottom: 4px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.job-company { font-size: 14px; color: var(--text-secondary); font-weight: 500; }

.job-meta { display: flex; flex-wrap: wrap; gap: 8px; }

.job-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.job-tag svg { width: 12px; height: 12px; }
.job-tag.type-full { background: rgba(0, 212, 170, 0.1); border-color: rgba(0, 212, 170, 0.3); color: var(--success); }
.job-tag.type-intern { background: rgba(108,99,255,0.1); border-color: rgba(108,99,255,0.3); color: #a89cff; }
.job-tag.type-remote { background: rgba(255, 171, 0, 0.1); border-color: rgba(255, 171, 0, 0.3); color: var(--warning); }
.job-tag.type-part { background: rgba(255, 107, 107, 0.1); border-color: rgba(255,107,107,0.3); color: var(--danger); }

.job-salary { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; color: var(--success); }
.job-salary span { font-size: 12px; color: var(--text-muted); font-weight: 400; font-family: 'Inter', sans-serif; }

.job-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.job-time { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   REWARD SECTION
   ============================================================ */
.reward-overview-card {
    background: linear-gradient(135deg, rgba(108,99,255,0.15), rgba(118,75,162,0.15));
    border: 1px solid rgba(108,99,255,0.2);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.reward-overview-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108,99,255,0.2) 0%, transparent 70%);
    pointer-events: none;
}

/* Progress Ring */
.progress-ring-wrap { display: flex; align-items: center; justify-content: center; position: relative; }

.progress-ring-svg { transform: rotate(-90deg); }

.progress-ring-bg { fill: none; stroke: rgba(255,255,255,0.08); }
.progress-ring-fill { fill: none; stroke: url(#ringGradient); stroke-linecap: round; transition: stroke-dashoffset 1s ease; }

.progress-ring-center {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-value { font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 900; color: var(--gold); display: block; line-height: 1; }
.ring-label { font-size: 11px; color: var(--text-muted); }

/* Coin Stats */
.coin-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }

.coin-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.coin-stat-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.coin-stat-icon { font-size: 28px; display: block; margin-bottom: 8px; }
.coin-stat-num { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 800; display: block; }
.coin-stat-label { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   DAILY TASKS
   ============================================================ */
.task-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.task-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }

.task-card.completed { border-color: rgba(0, 212, 170, 0.3); }
.task-card.completed::after { content: '✓ Completed'; position: absolute; top: 16px; right: 16px; background: rgba(0,212,170,0.15); border: 1px solid rgba(0,212,170,0.3); color: var(--success); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 50px; }

.task-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }

.task-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.task-icon-wrap svg { width: 22px; height: 22px; color: white; }

.task-title { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.task-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

.task-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }

.task-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted);
}

.task-meta-item svg { width: 13px; height: 13px; }

.task-reward {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
}

.task-reward svg { width: 16px; height: 16px; }

.task-progress-bar { height: 6px; background: var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 8px; }
.task-progress-fill { height: 100%; border-radius: 10px; transition: width 0.5s ease; }

.task-progress-text { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); }

/* Timer Badge */
.timer-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: var(--danger);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.timer-badge svg { width: 12px; height: 12px; }

/* ============================================================
   GIFT CARDS
   ============================================================ */
.gift-card-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.gift-card-item:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

.gift-card-banner {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gift-card-brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.gift-card-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
}

.gift-card-body { padding: 20px; }
.gift-card-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.gift-card-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.5; }

.gift-card-footer { display: flex; align-items: center; justify-content: space-between; }
.gift-card-cost { display: flex; align-items: center; gap: 5px; font-size: 15px; font-weight: 700; color: var(--gold); }
.gift-card-cost svg { width: 16px; height: 16px; }
.gift-card-value { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 16px 40px;
}

.auth-card {
    width: 100%;
    max-width: 460px;
    background: rgba(13, 11, 28, 0.9);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), var(--shadow-glow);
    backdrop-filter: blur(20px);
}

.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo .logo-icon { width: 56px; height: 56px; margin: 0 auto 12px; border-radius: 16px; }
.auth-logo .logo-icon svg { width: 28px; height: 28px; }
.auth-title { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 800; text-align: center; margin-bottom: 6px; }
.auth-subtitle { font-size: 14px; color: var(--text-secondary); text-align: center; margin-bottom: 32px; }

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

.form-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 15px;
    transition: var(--transition);
    outline: none;
    font-family: 'Inter', sans-serif;
}

.form-input:focus { border-color: var(--primary); background: rgba(108,99,255,0.08); box-shadow: 0 0 0 3px rgba(108,99,255,0.1); }
.form-input::placeholder { color: var(--text-muted); }

.form-input-icon { position: relative; }
.form-input-icon .form-input { padding-left: 44px; }
.form-input-icon .input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }
.form-input-icon .input-icon svg { width: 18px; height: 18px; }

.form-error { color: var(--danger); font-size: 12px; margin-top: 6px; display: flex; align-items: center; gap: 4px; }

.auth-divider { text-align: center; color: var(--text-muted); font-size: 13px; margin: 20px 0; position: relative; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border); }
.auth-divider span { background: rgba(13, 11, 28, 0.9); padding: 0 12px; position: relative; }

.auth-switch { text-align: center; font-size: 14px; color: var(--text-secondary); margin-top: 20px; }
.auth-switch a { color: var(--primary); font-weight: 600; }

/* Alert styles */
.alert-qfj {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.alert-qfj-error { background: rgba(255, 107, 107, 0.1); border: 1px solid rgba(255,107,107,0.3); color: #ff9999; }
.alert-qfj-success { background: rgba(0, 212, 170, 0.1); border: 1px solid rgba(0,212,170,0.3); color: #00d4aa; }
.alert-qfj-info { background: rgba(108,99,255,0.1); border: 1px solid rgba(108,99,255,0.3); color: #a89cff; }
.alert-qfj svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   LEADERBOARD
   ============================================================ */
.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.leaderboard-item:hover { background: var(--bg-card); }

.rank-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.rank-1 { background: linear-gradient(135deg, #ffd700, #ff9900); color: #1a1200; }
.rank-2 { background: linear-gradient(135deg, #c0c0c0, #888); color: #1a1200; }
.rank-3 { background: linear-gradient(135deg, #cd7f32, #8b4513); color: white; }
.rank-other { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-muted); }

.lb-name { font-weight: 600; font-size: 14px; flex: 1; }
.lb-coins { color: var(--gold); font-weight: 700; font-size: 14px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.how-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }

.how-step-num {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin: 0 auto 16px;
    box-shadow: 0 8px 20px rgba(108,99,255,0.3);
}

.how-step-title { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.how-step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   PROFILE
   ============================================================ */
.profile-hero {
    background: linear-gradient(135deg, rgba(108,99,255,0.15), rgba(118,75,162,0.15));
    border: 1px solid rgba(108,99,255,0.2);
    border-radius: var(--radius-xl);
    padding: 36px;
    margin-bottom: 28px;
}

.profile-avatar-lg {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 30px rgba(108,99,255,0.4);
    margin-bottom: 16px;
}

.profile-level-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* ============================================================
   COIN TOAST
   ============================================================ */
.coin-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.coin-toast.hidden { opacity: 0; transform: translateX(120%); pointer-events: none; }
.coin-toast.show { opacity: 1; transform: translateX(0); }

.coin-toast-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(13, 11, 28, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5), var(--shadow-gold);
    backdrop-filter: blur(20px);
    min-width: 240px;
}

.coin-toast-icon { font-size: 28px; }
.coin-toast-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--gold); }
.coin-toast-text span { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.qfj-footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon { width: 36px; height: 36px; border-radius: 10px; }
.footer-logo .logo-icon svg { width: 18px; height: 18px; }

.footer-tagline { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }

.footer-stats { display: flex; gap: 20px; }
.fstat { text-align: center; }
.fstat-num { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; color: var(--primary); display: block; }
.fstat-label { font-size: 12px; color: var(--text-muted); }

.footer-col h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-primary); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; transition: var(--transition); }
.footer-col a:hover { color: var(--primary); padding-left: 4px; }

.footer-how { display: flex; flex-direction: column; gap: 10px; }
.how-step { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-secondary); }
.how-num { width: 24px; height: 24px; background: var(--primary-light); border: 1px solid rgba(108,99,255,0.3); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--primary); flex-shrink: 0; }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--text-muted); }

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

@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
}

.glow-primary { box-shadow: var(--shadow-glow); }
.glow-gold { box-shadow: var(--shadow-gold); }

.text-gold { color: var(--gold) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }
.text-muted-qfj { color: var(--text-muted) !important; }
.text-secondary-qfj { color: var(--text-secondary) !important; }

.gradient-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-gradient-text {
    background: linear-gradient(135deg, #f7971e, #ffd200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes coinSpin { 0% { transform: rotateY(0deg); } 100% { transform: rotateY(360deg); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.animate-fadeup { animation: fadeInUp 0.6s ease both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

.spin { animation: spin 1.2s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 28px;
}

.filter-bar .form-input { flex: 1; min-width: 200px; }
.filter-select { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; color: var(--text-primary); font-size: 14px; cursor: pointer; outline: none; min-width: 150px; }
.filter-select option { background: #13111f; }
.filter-select:focus { border-color: var(--primary); }

/* Page header */
.page-header {
    padding: 40px 0 28px;
    position: relative;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(108,99,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section { padding: 40px 0 30px; }
    .hero-stats { gap: 20px; }
    .coin-stats-grid { grid-template-columns: 1fr 1fr; }
    .auth-card { padding: 28px 20px; }
    .filter-bar { flex-direction: column; }
    .filter-bar .form-input, .filter-select { width: 100%; }
    .profile-hero { padding: 24px; }
    .coin-toast { bottom: 16px; right: 16px; left: 16px; }
    .coin-toast-inner { min-width: unset; }
}

/* Streak Badge */
.streak-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, rgba(247,151,30,0.15), rgba(255,210,0,0.15));
    border: 1px solid rgba(255,171,0,0.3);
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--warning);
}

/* Level badges */
.badge-bronze { background: rgba(205,127,50,0.15); border: 1px solid rgba(205,127,50,0.3); color: #cd7f32; }
.badge-silver { background: rgba(192,192,192,0.15); border: 1px solid rgba(192,192,192,0.3); color: #c0c0c0; }
.badge-gold { background: rgba(255,215,0,0.15); border: 1px solid rgba(255,215,0,0.3); color: #ffd700; }
.badge-platinum { background: rgba(229,228,226,0.15); border: 1px solid rgba(229,228,226,0.3); color: #e5e4e2; }

/* Category pills */
.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.category-pill:hover, .category-pill.active {
    background: var(--primary-light);
    border-color: rgba(108,99,255,0.4);
    color: #a89cff;
}

/* Stats counter animation */
.counter-num { display: inline-block; }

/* Milestone tracker */
.milestone-bar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
}

.milestone-bar-track { height: 12px; background: rgba(255,255,255,0.06); border-radius: 10px; overflow: hidden; margin: 12px 0 8px; }
.milestone-bar-fill { height: 100%; border-radius: 10px; background: linear-gradient(90deg, var(--primary), var(--gold)); position: relative; transition: width 1.2s ease; }
.milestone-bar-fill::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 20px; background: rgba(255,255,255,0.3); border-radius: 10px; animation: shimmer 1.5s infinite; }

.milestone-checkpoints { display: flex; justify-content: space-between; margin-top: 4px; }
.milestone-checkpoint { font-size: 11px; color: var(--text-muted); text-align: center; }
.milestone-checkpoint.reached { color: var(--gold); font-weight: 600; }

/* Dark select */
select option { background: #0f0c29; color: var(--text-primary); }

/* Transaction history */
.tx-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.tx-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.tx-icon.earn { background: rgba(0,212,170,0.15); }
.tx-icon.spend { background: rgba(255,107,107,0.15); }
.tx-info { flex: 1; }
.tx-source { font-size: 13px; font-weight: 600; }
.tx-desc { font-size: 12px; color: var(--text-muted); }
.tx-amount { font-weight: 700; font-size: 15px; }
.tx-amount.earn { color: var(--success); }
.tx-amount.spend { color: var(--danger); }
.tx-time { font-size: 11px; color: var(--text-muted); }

/* Job detail */
.job-detail-header {
    background: linear-gradient(135deg, rgba(108,99,255,0.1), rgba(118,75,162,0.1));
    border: 1px solid rgba(108,99,255,0.15);
    border-radius: var(--radius-xl);
    padding: 36px;
    margin-bottom: 28px;
}

.job-company-logo-lg {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    margin-bottom: 0;
    box-shadow: 0 8px 24px rgba(108,99,255,0.3);
}

/* Sticky sidebar — static on mobile */
.job-sidebar-sticky {
    position: sticky;
    top: 88px;
    z-index: 1;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(12,10,35,0.98) !important;
}

@media (max-width: 991px) {
    .job-sidebar-sticky { position: static; }

    .job-detail-header {
        padding: 18px;
        border-radius: var(--radius);
        margin-bottom: 18px;
    }

    .job-company-logo-lg {
        width: 52px;
        height: 52px;
        font-size: 22px;
        border-radius: 12px;
    }

    .job-detail-header h1 {
        font-size: 20px !important;
        line-height: 1.3;
    }

    .job-detail-header .d-flex.gap-4 { gap: 14px !important; }
    .job-detail-header .job-meta { gap: 6px; }
}

.skills-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.skill-tag { padding: 5px 14px; background: var(--primary-light); border: 1px solid rgba(108,99,255,0.2); border-radius: 50px; font-size: 12px; font-weight: 500; color: #a89cff; }

/* No results */
.no-results { text-align: center; padding: 60px 20px; color: var(--text-secondary); }
.no-results-icon { font-size: 56px; margin-bottom: 16px; display: block; opacity: 0.5; }
.no-results h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.no-results p { font-size: 14px; }

/* Redeem modal */
.redeem-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 16px;
}

.redeem-modal-backdrop.open { opacity: 1; visibility: visible; }

.redeem-modal {
    background: #13111f;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 40px 80px rgba(0,0,0,0.7);
    transform: scale(0.95);
    transition: var(--transition);
}

.redeem-modal-backdrop.open .redeem-modal { transform: scale(1); }
.redeem-modal-close { position: absolute; top: 16px; right: 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-muted); }
.redeem-modal-close:hover { color: var(--text-primary); }
.redeem-modal-close svg { width: 16px; height: 16px; }
