/* ============================================================
   云顶网络 · Stripe-inspired design system
   Tokens: indigo #533afd · ink #0d253d · canvas #ffffff · canvas-soft #f6f9fc
   Type:   Inter (Sohne substitute) weight 300, negative tracking on display
   Shapes: pill 9999 / xl 16 / lg 12 / md 8 / sm 6 / xs 4
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* -- Design tokens -- */
:root {
    --c-primary: #533afd;
    --c-primary-deep: #4434d4;
    --c-primary-press: #2e2b8c;
    --c-primary-soft: #665efd;
    --c-primary-subdued: #b9b9f9;
    --c-brand-dark: #1c1e54;
    --c-ink: #0d253d;
    --c-ink-2: #273951;
    --c-ink-mute: #64748d;
    --c-ink-mute-2: #61718a;
    --c-on-primary: #ffffff;
    --c-canvas: #ffffff;
    --c-canvas-soft: #f6f9fc;
    --c-canvas-cream: #f5e9d4;
    --c-hairline: #e3e8ee;
    --c-hairline-input: #a8c3de;
    --c-ruby: #ea2261;
    --c-magenta: #f96bee;

    --r-xs: 4px;
    --r-sm: 6px;
    --r-md: 8px;
    --r-lg: 12px;
    --r-xl: 16px;
    --r-pill: 9999px;

    --sh-1: 0 1px 3px rgba(0, 55, 112, 0.08);
    --sh-2: 0 8px 24px rgba(0, 55, 112, 0.08), 0 2px 6px rgba(0, 55, 112, 0.04);

    --font-sans: 'Inter', 'SF Pro Display', system-ui, -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

/* -- Reset -- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-feature-settings: "ss01";
    line-height: 1.5;
    color: var(--c-ink);
    background-color: var(--c-canvas);
}

/* Money / numeric cells use tabular figures */
.price, .job-card-info, .second-hand-card-info,
.summary-row span, .order-line, .detail-meta,
.card-footer, .caption {
    font-feature-settings: "tnum";
}

a {
    color: var(--c-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--c-primary-deep);
}

img {
    max-width: 100%;
    display: block;
}

/* -- Modal (image viewer) -- */
.black_overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: var(--c-brand-dark);
    z-index: 1001;
    -moz-opacity: 0.6;
    opacity: .60;
}

.blank_content {
    display: none;
    position: fixed;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 470px;
    max-width: 90vw;
    border-radius: var(--r-lg);
    padding: 16px;
    background: var(--c-canvas);
    box-shadow: var(--sh-2);
    z-index: 1002;
}

.blank_content h2 {
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-weight: 400;
    padding: 0 5px 0 10px;
}

.blank_content h2 span { float: right; cursor: pointer; color: var(--c-ink-mute); }
.blank_content h3 { height: 40px; line-height: 40px; font-size: 18px; font-weight: 400; }
.blank_content h3 a { color: var(--c-primary); }
.blank_content .open { padding: 10px 15px 20px; overflow: hidden; }
.blank_content .open img { width: 100%; border-radius: var(--r-sm); }

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

/* -- Navbar (sticky, frosted glass on scroll) -- */
.navbar {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--c-hairline);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 16px 24px;
}

.logo { flex: 0 0 auto; }

.logo h1 {
    color: var(--c-ink);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.4px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4px;
}

.nav-links a {
    color: var(--c-ink-2);
    font-size: 14px;
    font-weight: 400;
    padding: 8px 12px;
    border-radius: var(--r-pill);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--c-primary);
    background-color: var(--c-primary-subdued);
}

/* -- Banner: 极淡紫调单色 hero -- */
.banner {
    position: relative;
    color: var(--c-ink);
    padding: 96px 0 80px;
    text-align: center;
    overflow: hidden;
    background-color: var(--c-canvas);
    background-image:
        radial-gradient(ellipse 90% 100% at 50% 0%, rgba(83, 58, 253, 0.05) 0%, transparent 60%);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h2 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.03;
    letter-spacing: -1.4px;
    margin-bottom: 20px;
    color: var(--c-ink);
}

.banner-content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 40px;
    color: var(--c-ink-2);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* -- Buttons: Stripe pill system -- */
.btn {
    display: inline-block;
    padding: 10px 18px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    border: 1px solid transparent;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--c-primary);
    color: var(--c-on-primary);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
    background-color: var(--c-primary-deep);
    color: var(--c-on-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(83, 58, 253, 0.25);
}

.btn-primary:active {
    background-color: var(--c-primary-press);
    transform: translateY(0);
}

.btn-secondary {
    background-color: var(--c-canvas);
    color: var(--c-primary);
    border: 1px solid var(--c-primary);
}

.btn-secondary:hover {
    background-color: var(--c-primary-subdued);
    color: var(--c-primary-deep);
}

/* -- Main layout -- */
main {
    padding: 64px 0;
}

section {
    margin-bottom: 64px;
}

section > h2 {
    font-size: 40px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.8px;
    margin-bottom: 32px;
    color: var(--c-ink);
}

/* -- Business overview / process / dashboard grids -- */
.business-overview,
.process-steps,
.compliance-grid,
.dashboard-grid,
.rule-grid,
.order-layout {
    display: grid;
    gap: 20px;
}

.business-overview {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-bottom: 40px;
}

/* -- Cards: white canvas, 12px radius, hairline border, level-1 shadow -- */
.overview-card,
.process-card,
.rule-card,
.dashboard-card,
.order-card,
.notice-panel,
.job-card,
.second-hand-card,
.job-detail,
.second-hand-detail,
.publisher-info,
.post-form,
.login-form-container,
.register-form-container,
.legal-content,
.license-preview,
.job-list-item,
.second-hand-list-item {
    background-color: var(--c-canvas);
    border: 1px solid var(--c-hairline);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-1);
}

.overview-card,
.process-card,
.rule-card,
.dashboard-card,
.order-card,
.notice-panel {
    padding: 28px;
}

.overview-card h3,
.process-card h3,
.rule-card h3,
.dashboard-card h3,
.order-card h3,
.notice-panel h3,
.job-detail .detail-title,
.second-hand-detail .detail-title,
.publisher-info h3 {
    color: var(--c-ink);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.2px;
    margin-bottom: 12px;
}

.overview-card p,
.process-card p,
.rule-card p,
.dashboard-card p,
.notice-panel p {
    color: var(--c-ink-mute);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.55;
    margin-bottom: 10px;
}

/* -- Tag pills (subdued indigo) -- */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tag-list span,
.status-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--r-pill);
    background-color: var(--c-primary-subdued);
    color: var(--c-primary-deep);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1px;
    text-transform: uppercase;
}

.status-tag {
    text-transform: none;
}

/* -- Process steps with numbered indigo circles -- */
.process-steps {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    counter-reset: step;
}

.process-card {
    position: relative;
    padding-top: 60px;
}

.process-card::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: 24px;
    left: 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--c-primary);
    color: var(--c-on-primary);
    text-align: center;
    line-height: 28px;
    font-weight: 500;
    font-size: 14px;
}

.compliance-grid,
.dashboard-grid,
.rule-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.order-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: start;
}

/* -- Summary rows (tabular data hairlines) -- */
.summary-row,
.order-line,
.dashboard-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--c-hairline);
    font-size: 15px;
}

.summary-row strong {
    color: var(--c-ink-mute);
    font-weight: 400;
}

.summary-row span {
    color: var(--c-ink);
    font-weight: 400;
    text-align: right;
}

.summary-row:last-child,
.order-line:last-child,
.dashboard-row:last-child {
    border-bottom: none;
}

/* -- Company profile (notice panel + license preview) -- */
.company-profile {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.notice-panel p {
    margin-top: 12px;
    color: var(--c-ink-mute);
    line-height: 1.7;
    font-size: 14px;
}

.license-preview {
    padding: 12px;
}

.license-preview img {
    width: 100%;
    border-radius: var(--r-sm);
}

/* -- Job / second-hand card grids -- */
.job-grid,
.second-hand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.job-card,
.second-hand-card {
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.job-card:hover,
.second-hand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-2);
}

.job-card-image {
    height: 200px;
    overflow: hidden;
    background-color: var(--c-canvas-soft);
}

.second-hand-card-image {
    height: 220px;
    overflow: hidden;
    background-color: var(--c-canvas-soft);
}

.job-card-image img,
.second-hand-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.job-card:hover .job-card-image img,
.second-hand-card:hover .second-hand-card-image img {
    transform: scale(1.04);
}

.job-card-content,
.second-hand-card-content {
    padding: 24px;
}

.job-card-title,
.second-hand-card-title {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.2px;
    margin-bottom: 10px;
    color: var(--c-ink);
}

.job-card-title a,
.second-hand-card-title a {
    color: inherit;
}

.job-card-title a:hover,
.second-hand-card-title a:hover {
    color: var(--c-primary);
}

.job-card-info,
.second-hand-card-info {
    margin-bottom: 14px;
    color: var(--c-ink-mute);
    font-size: 14px;
}

.second-hand-card-info .price {
    color: var(--c-primary);
    font-weight: 500;
    font-size: 18px;
}

.job-card-desc,
.second-hand-card-desc {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--c-ink-mute);
    font-size: 14px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--c-ink-mute);
}

/* -- More link -- */
.more-link {
    text-align: center;
    margin-top: 24px;
}

.more-link a {
    display: inline-block;
    color: var(--c-primary);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
}

.more-link a:hover {
    color: var(--c-primary-deep);
}

/* -- List pages (horizontal cards) -- */
.job-list,
.second-hand-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-list-item,
.second-hand-list-item {
    padding: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-list-item:hover,
.second-hand-list-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-2);
}

.job-list-item a,
.second-hand-list-item a {
    color: inherit;
    display: flex;
    align-items: center;
}

.list-item-image {
    width: 240px;
    height: 130px;
    border-radius: var(--r-md);
    overflow: hidden;
    margin-right: 24px;
    flex-shrink: 0;
    background-color: var(--c-canvas-soft);
}

.list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-item-content { flex: 1; }

.list-item-title {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.2px;
    margin-bottom: 10px;
    color: var(--c-ink);
}

.list-item-info {
    margin-bottom: 10px;
    color: var(--c-ink-mute);
    font-size: 14px;
}

.list-item-info .price {
    color: var(--c-primary);
    font-weight: 500;
    font-size: 17px;
}

.list-item-desc {
    color: var(--c-ink-mute);
    line-height: 1.6;
    font-size: 14px;
}

/* -- Detail pages -- */
.job-detail,
.second-hand-detail {
    padding: 36px;
    margin-bottom: 30px;
}

.detail-title {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: -0.64px;
    margin-bottom: 20px;
    color: var(--c-ink);
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--c-hairline);
    color: var(--c-ink-mute);
    font-size: 14px;
}

.detail-meta .price {
    color: var(--c-primary);
    font-weight: 500;
    font-size: 22px;
}

.detail-image {
    width: 100%;
    max-height: 460px;
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 30px;
    background-color: var(--c-canvas-soft);
}

.detail-image img {
    width: 440px;
    max-width: 100%;
    margin: 0 auto;
}

.detail-content {
    line-height: 1.75;
    color: var(--c-ink-2);
    margin-bottom: 30px;
    font-size: 15px;
}

.detail-content h3 {
    color: var(--c-ink);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.22px;
    margin: 28px 0 14px;
}

.detail-content p { margin-bottom: 14px; }

.detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* -- Publisher info -- */
.publisher-info {
    padding: 28px;
    margin-bottom: 30px;
}

.publisher-details {
    display: flex;
    align-items: center;
}

.publisher-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 24px;
    background-color: var(--c-canvas-soft);
}

.publisher-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.publisher-text-info { flex: 1; }

.publisher-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--c-ink);
}

.publisher-contact {
    color: var(--c-ink-mute);
    margin-bottom: 5px;
    font-size: 14px;
}

.publisher-contact strong {
    color: var(--c-ink-2);
    font-weight: 500;
}

/* -- Forms -- */
.post-form,
.login-form-container,
.register-form-container {
    padding: 36px;
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--c-ink-2);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--c-hairline-input);
    border-radius: var(--r-sm);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--c-ink);
    background-color: var(--c-canvas);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--c-ink-mute-2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(83, 58, 253, 0.12);
}

.form-group input[type="file"] {
    padding: 8px;
    border: 1px solid var(--c-hairline-input);
    border-radius: var(--r-sm);
    width: 100%;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--c-ink-2);
}

.remember-me input[type="checkbox"] {
    margin-right: 8px;
}

.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 14px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    background-color: var(--c-primary);
    color: var(--c-on-primary);
    border: none;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-btn:hover {
    background-color: var(--c-primary-deep);
    box-shadow: 0 4px 12px rgba(83, 58, 253, 0.25);
}

.form-links {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
}

.form-links a {
    color: var(--c-primary);
    font-weight: 500;
}

.form-links a:hover {
    color: var(--c-primary-deep);
    text-decoration: underline;
}

/* -- Footer (Stripe-style light footer) -- */
footer {
    background-color: var(--c-canvas);
    color: var(--c-ink-mute);
    padding: 64px 0 32px;
    border-top: 1px solid var(--c-hairline);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 32px;
}

.footer-info h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--c-ink);
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--c-ink-mute);
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--c-ink);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: var(--c-ink-mute);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--c-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--c-hairline);
    font-size: 12px;
    color: var(--c-ink-mute);
}

/* -- Back button -- */
.back-btn {
    margin-top: 30px;
    display: inline-block;
}

/* -- Loading -- */
.loading {
    text-align: center;
    padding: 40px;
    color: var(--c-ink-mute);
    font-size: 14px;
}

/* -- Payment options -- */
.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.payment-option {
    border: 1px solid var(--c-hairline);
    border-radius: var(--r-md);
    padding: 14px;
    cursor: pointer;
    font-size: 14px;
    color: var(--c-ink-2);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.payment-option:hover {
    border-color: var(--c-primary);
    background-color: var(--c-canvas-soft);
}

.payment-option input { margin-right: 8px; }

/* -- Service flow list -- */
.service-flow {
    margin: 18px 0;
    padding-left: 20px;
    color: var(--c-ink-mute);
    font-size: 14px;
    line-height: 1.7;
}

.service-flow li { margin-bottom: 8px; }

/* -- Legal content (compliance pages) -- */
.legal-content {
    padding: 36px;
}

.legal-content h3 {
    margin: 24px 0 12px;
    color: var(--c-ink);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.legal-content h3:first-child { margin-top: 0; }

.legal-content p,
.legal-content li {
    color: var(--c-ink-2);
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    padding-left: 22px;
}

/* -- Form grid -- */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.success-message-inline {
    display: none;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: var(--r-md);
    background-color: rgba(30, 132, 73, 0.08);
    color: #1e8449;
    font-size: 14px;
}

/* -- Responsive -- */
@media (max-width: 1024px) {
    .banner-content h2 { font-size: 44px; letter-spacing: -1px; }
    section > h2 { font-size: 32px; letter-spacing: -0.64px; }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        padding: 12px 20px;
    }

    .nav-links {
        margin-top: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links li { margin: 4px; }
    .nav-links a { padding: 6px 10px; font-size: 13px; }

    .banner {
        padding: 64px 0 56px;
    }

    .banner-content h2 {
        font-size: 36px;
        letter-spacing: -0.8px;
    }

    .banner-content p { font-size: 16px; }

    .quick-links {
        flex-direction: column;
        align-items: stretch;
    }

    main { padding: 40px 0; }

    section { margin-bottom: 40px; }

    section > h2 { font-size: 28px; letter-spacing: -0.5px; }

    .job-grid,
    .second-hand-grid { grid-template-columns: 1fr; }

    .order-layout,
    .company-profile { grid-template-columns: 1fr; }

    .job-list-item a,
    .second-hand-list-item a {
        flex-direction: column;
        align-items: flex-start;
    }

    .list-item-image {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 16px;
    }

    .detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .publisher-details {
        flex-direction: column;
        align-items: flex-start;
    }

    .publisher-avatar {
        margin-right: 0;
        margin-bottom: 16px;
    }

    .job-detail,
    .second-hand-detail,
    .post-form,
    .login-form-container,
    .register-form-container,
    .legal-content { padding: 24px; }
}

@media (max-width: 480px) {
    .banner { padding: 48px 0; }

    .banner-content h2 { font-size: 30px; }

    .overview-card,
    .process-card,
    .rule-card,
    .dashboard-card,
    .order-card,
    .notice-panel,
    .job-card-content,
    .second-hand-card-content { padding: 20px; }

    .footer-content { gap: 24px; }
}
