/* ============================================
   星火教育校园招聘系统 - 主样式文件
   主色调: #a071af
   设计风格: 清新简约，参考 join.qq.com
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #a071af;
  --primary-light: #c4a0d0;
  --primary-dark: #835e93;
  --primary-bg: #f8f4fa;
  --primary-gradient: linear-gradient(135deg, #a071af, #835e93);
  --text-primary: #2d2a3e;
  --text-secondary: #6b6880;
  --text-light: #9b99ae;
  --bg-white: #ffffff;
  --bg-gray: #f7f6fa;
  --bg-card: #ffffff;
  --border: #edeaf0;
  --border-light: #f3f0f6;
  --shadow-sm: 0 1px 3px rgba(160, 113, 175, 0.08);
  --shadow-md: 0 4px 16px rgba(160, 113, 175, 0.12);
  --shadow-lg: 0 8px 32px rgba(160, 113, 175, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --nav-height: 56px;
  --tab-height: 56px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-family);
  color: var(--text-primary);
  background: var(--bg-gray);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  height: 100%;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }

/* ---------- Layout ---------- */
.app-container {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg-white);
  position: relative;
  box-shadow: 0 0 40px rgba(0,0,0,0.05);
}
@media (min-width: 768px) { .app-container { max-width: 800px; box-shadow: 0 0 60px rgba(160, 113, 175, 0.08); } }
@media (min-width: 1200px) { .app-container { max-width: 1000px; } }

.view {
  display: none;
  padding: 0 20px 20px 20px;
  padding-top: calc(var(--nav-height) + 12px);
  padding-bottom: calc(var(--tab-height) + env(safe-area-inset-bottom, 0px) + 24px);
  min-height: 100vh;
  animation: fadeIn 0.3s ease;
}
.view.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Login Page ---------- */
.login-page {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 100vh; padding: 24px;
  background: linear-gradient(135deg, #f8f4fa 0%, #f0eaf4 50%, #e8dff0 100%);
}
.login-box { width: 100%; max-width: 380px; background: var(--bg-white); border-radius: var(--radius-xl); padding: 40px 32px; box-shadow: var(--shadow-lg); }
.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo img { height: 48px; width: auto; object-fit: contain; }
.login-logo h1 { font-size: 20px; color: var(--text-primary); margin-top: 12px; font-weight: 600; }
.login-logo p { font-size: 14px; color: var(--text-secondary); margin-top: 4px; }
.login-form .form-group { margin-bottom: 20px; }
.login-form .input-wrapper { display: flex; align-items: center; gap: 8px; }
.login-form .input-wrapper input { flex: 1; }
.btn-get-code { flex-shrink: 0; padding: 10px 16px; font-size: 13px; background: var(--primary-bg); color: var(--primary); border: 1px solid var(--primary-light); border-radius: var(--radius-sm); cursor: pointer; white-space: nowrap; transition: all 0.2s; }
.btn-get-code:hover { background: var(--primary); color: #fff; }
.btn-get-code:disabled { background: var(--bg-gray); color: var(--text-light); border-color: var(--border); cursor: not-allowed; }
.login-footer { text-align: center; margin-top: 24px; font-size: 13px; color: var(--text-light); }
.login-footer .test-hint { margin-top: 12px; padding: 12px; background: #fff8e6; border-radius: var(--radius-sm); color: #8a7a3a; font-size: 13px; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: var(--text-primary); margin-bottom: 6px; }
.form-group label .required { color: #e74c3c; margin-left: 2px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; font-size: 15px; font-family: var(--font-family);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); outline: none;
  transition: all 0.2s; background: var(--bg-white); color: var(--text-primary);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(160, 113, 175, 0.1); }
.form-group input::placeholder { color: var(--text-light); }
.form-group input[readonly] { background: var(--bg-gray); color: var(--text-secondary); }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-group .file-upload { position: relative; border: 2px dashed var(--border); border-radius: var(--radius-md); padding: 24px; text-align: center; cursor: pointer; transition: all 0.2s; }
.form-group .file-upload:hover { border-color: var(--primary-light); background: var(--primary-bg); }
.form-group .file-upload input[type="file"] { position: absolute; opacity: 0; width: 100%; height: 100%; top: 0; left: 0; cursor: pointer; }
.form-group .file-upload .upload-icon { font-size: 28px; color: var(--primary-light); margin-bottom: 8px; }
.form-group .file-upload .upload-text { font-size: 14px; color: var(--text-secondary); }
.form-group .file-upload .upload-hint { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.form-group .file-name { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; padding: 6px 12px; background: var(--primary-bg); border-radius: var(--radius-sm); font-size: 13px; color: var(--primary); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 24px; font-size: 15px; font-weight: 500; font-family: var(--font-family); border: none; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s; outline: none; }
.btn-primary { background: var(--primary-gradient); color: #fff; box-shadow: 0 2px 8px rgba(160, 113, 175, 0.3); }
.btn-primary:hover { box-shadow: 0 4px 16px rgba(160, 113, 175, 0.4); transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary-bg); }
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--primary-light); color: var(--primary); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-xs { padding: 4px 12px; font-size: 12px; border-radius: 4px; }
.btn-danger { background: #e74c3c; color: #fff; }
.btn-danger:hover { background: #c0392b; }

/* ---------- Navigation Bar (Top, centered) ---------- */
.nav-bar {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 480px; height: var(--nav-height);
  background: var(--bg-white); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  padding: 0 20px; z-index: 100; box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .nav-bar { max-width: 800px; } }
@media (min-width: 1200px) { .nav-bar { max-width: 1000px; } }

.nav-bar .nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-bar .nav-logo img { height: 32px; width: auto; object-fit: contain; }
.nav-bar .nav-logo span { font-size: 16px; font-weight: 600; color: var(--text-primary); }
.nav-bar .nav-btn { padding: 6px 14px; font-size: 13px; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s; border: none; background: transparent; color: var(--text-secondary); font-family: var(--font-family); }
.nav-bar .nav-btn:hover { color: var(--primary); background: var(--primary-bg); }

/* ---------- Admin Nav Bar ---------- */
.admin-nav-bar {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 480px; height: var(--nav-height);
  background: var(--bg-white); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 20px; z-index: 100; box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .admin-nav-bar { max-width: 100%; } }
.admin-nav-bar .nav-logo { display: flex; align-items: center; gap: 10px; }
.admin-nav-bar .nav-logo img { height: 32px; width: auto; object-fit: contain; }
.admin-nav-bar .nav-title { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-left: 12px; }
.admin-nav-bar .nav-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }

/* ---------- Bottom Tab Bar ---------- */
.tab-bar {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 480px; height: var(--tab-height);
  background: var(--bg-white); border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-around;
  z-index: 100; padding-bottom: env(safe-area-inset-bottom, 0);
}
@media (min-width: 768px) { .tab-bar { max-width: 800px; } }
@media (min-width: 1200px) { .tab-bar { max-width: 1000px; } }

.tab-item { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 6px 40px; cursor: pointer; transition: all 0.2s; border: none; background: transparent; font-family: var(--font-family); color: var(--text-light); position: relative; border-radius: var(--radius-sm); }
.tab-item .tab-icon { font-size: 20px; line-height: 1; }
.tab-item .tab-label { font-size: 11px; font-weight: 400; }
.tab-item.active { color: #fff; background: var(--primary); }
.tab-item.active .tab-label { font-weight: 500; }

/* ---------- Banner (carousel) ---------- */
.banner {
  margin: 0 -20px 20px -20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #a071af 0%, #8b5a9f 40%, #6d4278 100%);
  border-radius: 0;
}
.banner-carousel { position: relative; width: 100%; aspect-ratio: 5 / 1; }
.banner-track { display: flex; height: 100%; transition: transform 0.4s ease; }
.banner-track img { min-width: 100%; height: 100%; object-fit: cover; flex-shrink: 0; }
.banner-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.banner-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; padding: 0; transition: all 0.3s; }
.banner-dot.active { background: #fff; width: 20px; border-radius: 4px; }
.banner-default {
  width: 100%;
  aspect-ratio: 5 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

/* Banner admin list */
.banner-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.banner-item { display: flex; align-items: center; gap: 10px; padding: 10px; background: var(--bg-gray); border-radius: var(--radius-sm); }
.banner-item img { width: 80px; height: 45px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.banner-item .banner-item-info { flex: 1; font-size: 13px; color: var(--text-secondary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.banner-item .banner-item-actions { display: flex; gap: 6px; flex-shrink: 0; }

/* ---------- Company Intro ---------- */
.company-intro { background: var(--primary-bg); border-radius: var(--radius-md); padding: 20px; margin-bottom: 20px; border: 1px solid var(--border-light); }
.company-intro h3 { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.company-intro p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }

/* ---------- Page Header ---------- */
.page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.page-header h2 { font-size: 20px; font-weight: 600; color: var(--text-primary); }
.page-header .subtitle { font-size: 14px; color: var(--text-secondary); }

/* ---------- Filter Bar ---------- */
.filter-bar { display: flex; gap: 10px; margin-bottom: 16px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
.filter-bar::-webkit-scrollbar { height: 0; }
.filter-select { padding: 8px 16px; font-size: 14px; font-family: var(--font-family); border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-white); color: var(--text-primary); outline: none; cursor: pointer; white-space: nowrap; flex-shrink: 0; }
.filter-select:focus { border-color: var(--primary); }

/* ---------- Job Cards ---------- */
.job-list { display: flex; flex-direction: column; gap: 12px; padding-bottom: 8px; }
.job-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; cursor: pointer; transition: all 0.2s; }
.job-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.job-card .job-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.job-card .job-title { font-size: 17px; font-weight: 600; color: var(--text-primary); line-height: 1.4; }
.job-card .job-title .job-type-tag { display: inline-block; font-size: 11px; font-weight: 500; padding: 2px 8px; border-radius: 4px; background: var(--primary-bg); color: var(--primary); margin-left: 8px; vertical-align: middle; }
.job-card .job-salary { flex-shrink: 0; font-size: 15px; font-weight: 700; color: var(--primary); white-space: nowrap; }
.job-card .job-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.job-card .job-meta .meta-item { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: var(--text-secondary); padding: 4px 10px; background: var(--bg-gray); border-radius: 4px; }
.job-card .job-desc { font-size: 14px; color: var(--text-secondary); margin-top: 10px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.job-card .job-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-light); }
.job-card .job-major { font-size: 13px; color: var(--text-light); }
.job-card .job-city { font-size: 13px; color: var(--text-light); }

/* ---------- Empty State ---------- */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state .empty-icon { font-size: 48px; color: var(--text-light); margin-bottom: 16px; }
.empty-state h3 { font-size: 17px; color: var(--text-primary); margin-bottom: 8px; }
.empty-state p { font-size: 14px; color: var(--text-secondary); }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4); display: none; align-items: center; justify-content: center;
  z-index: 200; padding: 20px; animation: fadeIn 0.2s ease;
  overscroll-behavior: contain; touch-action: none;
}
.modal-overlay.show { display: flex; }
.modal-content {
  background: var(--bg-white); border-radius: var(--radius-lg);
  width: 100%; max-width: 520px; max-height: 85vh;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-lg); animation: slideUp 0.3s ease;
  overscroll-behavior: contain; touch-action: pan-y;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--bg-white); z-index: 1; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.modal-header h3 { font-size: 18px; font-weight: 600; }
.modal-close { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border: none; background: var(--bg-gray); border-radius: 50%; cursor: pointer; font-size: 18px; color: var(--text-secondary); transition: all 0.2s; }
.modal-close:hover { background: var(--border); }
.modal-body { padding: 24px; }
.modal-footer { display: flex; gap: 12px; padding: 16px 24px; border-top: 1px solid var(--border); justify-content: flex-end; }

/* ---------- My Page ---------- */
.profile-card { background: var(--primary-gradient); border-radius: var(--radius-lg); padding: 24px; color: #fff; margin-bottom: 20px; position: relative; }
.profile-card .profile-top { display: flex; align-items: center; justify-content: space-between; }
.profile-card .profile-avatar { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 600; flex-shrink: 0; }
.profile-card .profile-info { flex: 1; margin-left: 16px; }
.profile-card .profile-name { font-size: 20px; font-weight: 600; margin-bottom: 2px; }
.profile-card .profile-phone { font-size: 14px; opacity: 0.85; }
.profile-card .profile-edit-btn { background: rgba(255,255,255,0.2); border: none; color: #fff; padding: 6px 14px; border-radius: var(--radius-sm); font-size: 13px; cursor: pointer; font-family: var(--font-family); transition: background 0.2s; }
.profile-card .profile-edit-btn:hover { background: rgba(255,255,255,0.3); }
.profile-card .profile-details { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.15); display: flex; flex-wrap: wrap; gap: 8px; }
.profile-card .profile-detail-item { font-size: 13px; opacity: 0.9; padding: 4px 12px; background: rgba(255,255,255,0.1); border-radius: 4px; }
.logout-btn-my { display: block; width: 100%; padding: 14px; margin-top: 24px; font-size: 15px; color: var(--text-secondary); background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-md); cursor: pointer; font-family: var(--font-family); transition: all 0.2s; text-align: center; }
.logout-btn-my:hover { border-color: #e74c3c; color: #e74c3c; }
.info-section { margin-bottom: 20px; }
.info-section .section-title { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.application-list { display: flex; flex-direction: column; gap: 10px; }
.application-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; transition: all 0.2s; }
.application-item:hover { border-color: var(--primary-light); }
.application-item .app-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.application-item .app-job { font-size: 15px; font-weight: 500; color: var(--text-primary); }
.application-item .app-status { font-size: 12px; padding: 3px 10px; border-radius: 4px; font-weight: 500; }
.application-item .app-status.pending { background: #fff8e1; color: #f57f17; }
.application-item .app-status.reviewing { background: #e3f2fd; color: #1565c0; }
.application-item .app-status.accepted { background: #e8f5e9; color: #2e7d32; }
.application-item .app-status.rejected { background: #fbe9e7; color: #c62828; }
.application-item .app-meta { font-size: 13px; color: var(--text-secondary); }
.application-item .app-meta span { margin-right: 16px; }

/* ---------- Process Steps ---------- */
.process-steps { display: flex; align-items: flex-start; gap: 0; margin-top: 8px; padding: 16px; background: var(--bg-gray); border-radius: var(--radius-md); overflow-x: auto; }
.process-step { display: flex; flex-direction: column; align-items: center; flex: 1; min-width: 60px; position: relative; }
.process-step .step-dot { width: 24px; height: 24px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; font-size: 12px; color: #fff; position: relative; z-index: 1; flex-shrink: 0; }
.process-step .step-dot.active { background: var(--primary); }
.process-step .step-dot.completed { background: #4caf50; }
.process-step .step-line { position: absolute; top: 12px; left: 50%; width: 100%; height: 2px; background: var(--border); z-index: 0; }
.process-step .step-line.completed { background: #4caf50; }
.process-step:last-child .step-line { display: none; }
.process-step .step-label { font-size: 11px; color: var(--text-secondary); margin-top: 6px; text-align: center; white-space: nowrap; }
.process-step .step-label.active { color: var(--primary); font-weight: 500; }

/* ---------- Profile Modal ---------- */
.profile-hint { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; padding: 12px; background: var(--primary-bg); border-radius: var(--radius-sm); border-left: 3px solid var(--primary); }

/* ---------- Admin Panel ---------- */
.admin-tabs { display: flex; gap: 0; margin-bottom: 20px; border-bottom: 1.5px solid var(--border); overflow-x: auto; }
.admin-tab { padding: 12px 20px; font-size: 14px; font-weight: 500; font-family: var(--font-family); border: none; background: transparent; color: var(--text-secondary); cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.2s; white-space: nowrap; }
.admin-tab:hover { color: var(--primary); }
.admin-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.admin-tab-content { display: none; animation: fadeIn 0.2s ease; }
.admin-tab-content.active { display: block; }
.admin-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; margin-bottom: 20px; }
.admin-form h4 { font-size: 16px; font-weight: 600; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); }
.admin-table-wrapper { overflow-x: auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); }
.admin-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.admin-table th { padding: 14px 16px; font-size: 13px; font-weight: 600; color: var(--text-secondary); text-align: left; background: var(--bg-gray); border-bottom: 1px solid var(--border); }
.admin-table td { padding: 14px 16px; font-size: 14px; color: var(--text-primary); border-bottom: 1px solid var(--border-light); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--primary-bg); }

/* ---------- Toast ---------- */
.toast-container { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 999; display: flex; flex-direction: column; align-items: center; gap: 8px; pointer-events: none; }
.toast { padding: 12px 24px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; box-shadow: var(--shadow-md); animation: toastIn 0.3s ease; pointer-events: auto; max-width: 90vw; }
.toast.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.toast.error { background: #fbe9e7; color: #c62828; border: 1px solid #ef9a9a; }
.toast.info { background: #e3f2fd; color: #1565c0; border: 1px solid #90caf9; }
@keyframes toastIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Radio ---------- */
.radio-group { display: flex; gap: 16px; }
.radio-group label { display: flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 400; cursor: pointer; color: var(--text-primary); }
.radio-group input[type="radio"] { width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer; }

/* ---------- Job Detail ---------- */
.job-detail-section { margin-bottom: 16px; }
.job-detail-section .detail-label { font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 4px; }
.job-detail-section .detail-value { font-size: 15px; color: var(--text-primary); line-height: 1.6; }
.job-detail-section .detail-salary { font-size: 15px; font-weight: 400; color: var(--text-primary); }

/* ---------- Download Link ---------- */
.download-link { color: var(--primary); cursor: pointer; text-decoration: underline; font-size: 13px; }
.download-link:hover { color: var(--primary-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .login-box { padding: 28px 20px; }
  .job-card { padding: 16px; }
  .modal-body { padding: 16px; }
  .modal-header { padding: 16px; }
  .admin-form { padding: 16px; }
  .profile-card { padding: 20px; }
  .banner img, .banner-default { height: 160px; }
}