:root {
    --theme-color: #4a90d9;
    --theme-color-dark: #357abd;
    --theme-color-light: #6bb3f0;
    --theme-deep: #1e4772;
    --theme-accent-text: #357abd;
    --theme-on-solid: #ffffff;
    --page-bg: #edf3f8;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-soft: rgba(255, 255, 255, 0.72);
    --text-main: #172033;
    --text-subtle: #5f6b80;
    --border-soft: rgba(97, 124, 160, 0.18);
    --shadow-soft: 0 24px 60px rgba(23, 32, 51, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--theme-color) 18%, transparent), transparent 42%),
        linear-gradient(180deg, #f7fbff 0%, var(--page-bg) 100%);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

[hidden] {
    display: none !important;
}

.landing {
    position: fixed;
    inset: 0;
    z-index: 50;
    background:
        radial-gradient(circle at top, color-mix(in srgb, var(--theme-color) 22%, transparent), transparent 44%),
        linear-gradient(160deg, color-mix(in srgb, var(--theme-deep) 86%, black 14%) 0%, #09111f 100%);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.landing.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}

.landing-inner {
    position: relative;
    width: min(100%, 520px);
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.landing-mode-pill {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 5;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    letter-spacing: 0.08em;
    backdrop-filter: blur(12px);
}

.landing-bg,
.landing-poster {
    position: absolute;
    inset: 0;
}

.landing-bg {
    background:
        radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--theme-color-light) 30%, transparent), transparent 26%),
        radial-gradient(circle at 80% 18%, color-mix(in srgb, var(--theme-color) 18%, transparent), transparent 24%),
        linear-gradient(180deg, color-mix(in srgb, var(--theme-deep) 88%, black 12%) 0%, #0c1627 100%);
}

.landing-poster {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

.landing-overlay {
    position: absolute;
    inset: auto 0 0;
    height: 240px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.16) 28%, rgba(0, 0, 0, 0.82) 100%);
    z-index: 2;
}

.landing-info-card {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    padding: 28px 24px 108px;
}

.landing-info-inner {
    width: min(88vw, 420px);
    max-width: 420px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 26px 28px;
    color: #fff;
}

.landing-title {
    font-size: clamp(30px, 7vw, 42px);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.landing-subtitle {
    margin-top: 14px;
    font-size: clamp(18px, 4.6vw, 24px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
}

.landing-divider {
    width: 64px;
    height: 4px;
    margin: 18px 0 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fff, color-mix(in srgb, var(--theme-color-light) 88%, white 12%));
}

.landing-info-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.landing-info-list li {
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    column-gap: 12px;
    align-items: start;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.68;
    font-size: 15px;
}

.landing-info-bullet {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--theme-color-light) 74%, white 26%);
    margin-top: 0.52em;
}

.landing-content {
    position: absolute;
    inset: auto 0 0;
    z-index: 4;
    padding: 0 28px 42px;
    text-align: center;
}

.enter-btn {
    width: min(100%, 320px);
    border: 0;
    border-radius: 999px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color-dark) 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: 0 16px 40px color-mix(in srgb, var(--theme-color) 34%, transparent);
}

.landing-ended-message {
    width: min(100%, 360px);
    margin: 0 auto;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.94);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    white-space: pre-line;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
    transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.landing.landing-poster-ready .landing-ended-message {
    -webkit-backdrop-filter: blur(14.1px) saturate(1.08);
    backdrop-filter: blur(14.1px) saturate(1.08);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .landing-ended-message {
        background: rgba(17, 24, 39, 0.62);
    }
}

.page-shell {
    min-height: 100vh;
    padding-bottom: 64px;
}

.hero {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 16px 0;
}

.hero-surface {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.hero-surface::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--theme-color-light) 25%, transparent), transparent 32%),
        linear-gradient(135deg, color-mix(in srgb, var(--theme-deep) 88%, black 12%) 0%, color-mix(in srgb, var(--theme-color-dark) 64%, #07111d 36%) 100%);
}

.hero-has-poster::before {
    background:
        linear-gradient(90deg, rgba(7, 17, 29, 0.92) 0%, rgba(7, 17, 29, 0.56) 44%, rgba(7, 17, 29, 0.8) 100%);
}

.hero-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.02);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    padding: 34px 28px;
    color: #fff;
}

.hero-kicker {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.66);
}

.hero-title {
    font-size: clamp(30px, 5vw, 44px);
    line-height: 1.14;
    font-weight: 800;
}

.hero-subtitle {
    max-width: 720px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.86);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-meta-item {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.88);
}

.hero-desc {
    max-width: 820px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.76);
}

.section-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    max-width: 1180px;
    margin: 16px auto 0;
    padding: 0 16px;
}

.section-nav-inner {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 36px rgba(23, 32, 51, 0.08);
    scrollbar-width: none;
}

.section-nav-inner::-webkit-scrollbar {
    display: none;
}

.nav-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    background: transparent;
    color: var(--text-subtle);
    white-space: nowrap;
    cursor: pointer;
    transition: 0.2s ease;
}

.nav-chip svg {
    width: 18px;
    height: 18px;
}

.nav-chip.active {
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color-dark) 100%);
    color: var(--theme-on-solid);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--theme-color) 28%, transparent);
}

.content-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 16px 40px;
}

.content-grid {
    display: grid;
    gap: 18px;
}

.content-grid.classic-grid {
    max-width: 760px;
    margin: 0 auto;
}

.content-grid.showcase-grid {
    gap: 22px;
}

.content-grid.minimal-grid {
    gap: 16px;
}

.content-section {
    display: none;
}

.content-section.active,
.content-grid.showcase-grid .content-section,
.content-grid.minimal-grid .content-section {
    display: block;
}

.section-surface {
    border-radius: 24px;
    border: 1px solid var(--border-soft);
    background: var(--surface);
    box-shadow: 0 16px 42px rgba(23, 32, 51, 0.08);
    overflow: hidden;
}

.section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    color: var(--theme-on-solid);
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color-dark) 100%);
}

.section-head-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
}

.section-head-icon svg {
    width: 22px;
    height: 22px;
}

.section-head-text h2 {
    font-size: 18px;
    font-weight: 700;
}

.section-head-text p {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.76);
}

.section-body {
    padding: 22px;
}

.showcase-grid .section-surface {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.showcase-grid .section-head {
    align-items: flex-start;
    min-height: 112px;
}

.showcase-grid .section-head-text h2 {
    font-size: 22px;
}

.minimal-grid .section-surface {
    border-radius: 18px;
    box-shadow: 0 8px 26px rgba(23, 32, 51, 0.06);
}

.minimal-grid .section-head {
    background: transparent;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-soft);
    padding: 18px 20px 16px;
}

.minimal-grid .section-head-icon {
    background: color-mix(in srgb, var(--theme-color) 12%, white);
    color: var(--theme-color);
}

.minimal-grid .section-head-text p {
    color: var(--text-subtle);
}

.classic-grid .section-head {
    padding: 15px 18px;
}

.stack-list {
    display: grid;
    gap: 14px;
}

.info-card,
.detail-card,
.date-card,
.contact-card {
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.86);
    padding: 18px;
}

.date-card {
    padding: 0;
    overflow: hidden;
}

.date-title,
.detail-title {
    padding: 16px 18px;
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-accent-text);
    background: color-mix(in srgb, var(--theme-color) 9%, white);
    border-bottom: 1px solid color-mix(in srgb, var(--theme-color) 16%, white);
}

.detail-card .detail-title {
    margin: -18px -18px 16px;
}

.detail-body {
    display: grid;
    gap: 12px;
}

.detail-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 16px;
}

.data-table thead th {
    padding: 12px 10px;
    background: color-mix(in srgb, var(--theme-color) 88%, black 12%);
    color: var(--theme-on-solid);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.data-table tbody td {
    padding: 13px 10px;
    border-bottom: 1px solid rgba(97, 124, 160, 0.14);
    text-align: center;
    font-size: 13px;
    color: #304158;
}

.data-table tbody tr:nth-child(even) td {
    background: rgba(248, 251, 255, 0.84);
}

.data-table tbody tr:last-child td {
    border-bottom: 0;
}

.info-row {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(97, 124, 160, 0.24);
    align-items: start;
}

.info-row:last-child {
    border-bottom: 0;
}

.info-label {
    color: var(--text-subtle);
    font-size: 13px;
    font-weight: 600;
}

.info-value {
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.7;
    word-break: break-word;
}

.text-content {
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.9;
    white-space: pre-line;
    word-break: break-word;
}

.group-title {
    margin-bottom: 10px;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 700;
}

.muted-block {
    border-radius: 16px;
    background: color-mix(in srgb, var(--theme-color) 6%, white);
    padding: 16px;
}

.empty-text {
    padding: 26px 12px;
    color: var(--text-subtle);
    text-align: center;
    font-size: 14px;
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color-dark) 100%);
    color: var(--theme-on-solid);
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 16px 36px color-mix(in srgb, var(--theme-color) 22%, transparent);
}

.action-link svg {
    width: 18px;
    height: 18px;
}

.link-inline {
    color: var(--theme-accent-text);
    text-decoration: none;
    font-weight: 600;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--theme-accent-text);
    text-decoration: none;
    font-weight: 600;
}

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

.map-card {
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: color-mix(in srgb, var(--theme-color) 8%, white);
    border: 1px solid color-mix(in srgb, var(--theme-color) 16%, white);
}

.map-card p {
    color: var(--text-subtle);
    line-height: 1.7;
    font-size: 13px;
}

.schedule-day-grid {
    display: grid;
    gap: 14px;
}

.schedule-item {
    border-radius: 16px;
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.84);
    padding: 16px;
}

.schedule-time {
    color: var(--theme-accent-text);
    font-size: 15px;
    font-weight: 700;
}

.schedule-location,
.schedule-content {
    margin-top: 8px;
    color: var(--text-main);
    line-height: 1.7;
    font-size: 14px;
}

.schedule-location strong,
.schedule-content strong {
    color: var(--text-subtle);
}

.loading,
.error-page {
    padding: 72px 16px;
    text-align: center;
    color: var(--text-subtle);
    font-size: 16px;
}

.error-page {
    color: #d14343;
}

.back-top {
    position: fixed;
    right: 20px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color-dark) 100%);
    color: var(--theme-on-solid);
    font-size: 20px;
    box-shadow: 0 16px 32px color-mix(in srgb, var(--theme-color) 26%, transparent);
    display: none;
    cursor: pointer;
}

.classic-shell {
    min-height: 100vh;
    background: #f0f2f5;
}

.classic-shell .banner {
    width: 100%;
    background: var(--theme-deep);
    position: relative;
    overflow: hidden;
}

.classic-shell .banner-img {
    width: 100%;
    display: block;
    object-fit: contain;
    max-height: 300px;
    background: var(--theme-deep);
}

.classic-shell .banner-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    background-color: var(--theme-deep);
    background-image: linear-gradient(
        180deg,
        rgba(12, 22, 39, 0) 50%,
        color-mix(in srgb, var(--theme-deep) 82%, black 18%) 100%
    );
}

.classic-shell .banner-placeholder.with-info {
    min-height: 180px;
    max-height: none;
}

@media (min-width: 768px) {
    .classic-shell .banner-placeholder.with-info {
        height: 300px;
        min-height: 300px;
        max-height: 300px;
        aspect-ratio: auto;
    }
}

.classic-banner-info {
    width: min(100%, 760px);
    min-height: 100%;
    padding: 12px 18px 12px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.classic-banner-info h1 {
    margin: 0;
    font-size: clamp(20px, 6.4vw, 34px);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-align: center;
    text-wrap: balance;
}

.classic-banner-info p {
    margin: 0;
    font-size: clamp(14px, 3.8vw, 20px);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.22;
    letter-spacing: 0.06em;
    text-align: center;
    text-wrap: balance;
}

.classic-banner-date {
    margin-top: 10px;
    font-size: clamp(11px, 3.4vw, 17px);
    line-height: 1.2;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
}

.classic-banner-location {
    margin-top: 4px;
    font-size: clamp(11px, 3.4vw, 17px);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.2;
}

.classic-banner-organizer {
    margin-top: 4px;
    font-size: clamp(11px, 3.4vw, 17px);
    line-height: 1.18;
    color: rgba(255, 255, 255, 0.94);
}

.classic-banner-unit {
    margin-top: 3px;
    font-size: clamp(10px, 3vw, 15px);
    line-height: 1.16;
    color: rgba(255, 255, 255, 0.9);
    text-wrap: balance;
    max-width: 92%;
}

.classic-banner-sponsor {
    margin-top: 6px;
    font-size: clamp(10px, 3vw, 15px);
    line-height: 1.18;
    color: rgba(255, 255, 255, 0.9);
    text-wrap: balance;
    max-width: 92%;
}

.classic-shell .tag-bar {
    background: #fff;
    padding: 10px 12px 14px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.classic-shell .tag-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
}

.classic-shell .tag-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 5px 8px;
    gap: 8px;
    border: 0;
    background: transparent;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.classic-shell .tag-btn .tag-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: color-mix(in srgb, var(--theme-color) 12%, #f5f7fa);
    color: var(--theme-accent-text);
    transition: all 0.2s ease;
}

.classic-shell .tag-btn .tag-icon svg {
    width: 28px;
    height: 28px;
    display: block;
    flex-shrink: 0;
}

.classic-shell .tag-btn .tag-label {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 2.4em;
    line-height: 1.2;
}

.classic-shell .tag-btn:hover .tag-icon {
    background: color-mix(in srgb, var(--theme-color) 20%, #f5f7fa);
}

.classic-shell .tag-btn.active {
    background: transparent;
    color: var(--theme-accent-text);
}

.classic-shell .tag-btn.active .tag-icon {
    background: var(--theme-color);
    color: var(--theme-on-solid);
}

.classic-shell .tag-btn.active .tag-icon svg {
    color: currentColor;
}

.classic-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 16px 12px 32px;
}

.classic-shell .section-card {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    display: none;
}

.classic-shell .section-card.active {
    display: block;
}

.classic-shell .section-header-bar {
    background: var(--theme-color);
    color: var(--theme-on-solid);
    text-align: center;
    padding: 13px 16px;
    border-radius: 10px 10px 0 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.classic-shell .classic-hotel-title {
    background: #fff;
    color: var(--theme-accent-text);
    padding: 14px 16px;
    border: 1px solid color-mix(in srgb, var(--theme-color) 18%, white);
    border-bottom-color: #e8ecf1;
    border-radius: 10px 10px 0 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.classic-shell .content-body {
    background: #fff;
    border-radius: 0 0 10px 10px;
    padding: 16px;
    border: 1px solid #e8ecf1;
    border-top: none;
}

.classic-shell .date-card {
    border: 1.5px solid #d4e3f5;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #fff;
}

.classic-shell .date-title {
    text-align: center;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--theme-accent-text);
    border-bottom: 1.5px solid #d4e3f5;
    background: #fafcfe;
}

.classic-shell .data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border-radius: 0;
}

.classic-shell .data-table thead th {
    background: var(--theme-color);
    color: var(--theme-on-solid);
    padding: 11px 8px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}

.classic-shell .data-table tbody td {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
    color: #444;
    font-size: 13px;
}

.classic-shell .data-table tbody tr:last-child td {
    border-bottom: none;
}

.classic-shell .data-table tbody tr:nth-child(even) td {
    background: #f9fbfd;
}

.transport-block {
    display: grid;
    gap: 20px;
}

.transport-table-title {
    margin: 0 0 10px;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 700;
}

.transport-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    background: #fff;
}

.transport-table {
    min-width: 680px;
    border-radius: 0;
}

.transport-table thead th,
.classic-shell .transport-table thead th {
    text-align: left;
    white-space: nowrap;
}

.transport-table tbody td,
.classic-shell .transport-table tbody td {
    text-align: left;
    vertical-align: top;
    line-height: 1.65;
}

.transport-text-cell {
    white-space: pre-line;
}

.transport-empty-cell {
    color: #94a3b8;
}

.transport-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.transport-chip {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--theme-color) 9%, white);
    color: var(--theme-accent-text);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.transport-ride-cards {
    display: grid;
    gap: 16px;
    max-width: 100%;
    min-width: 0;
}

.transport-ride-day {
    display: grid;
    gap: 10px;
    max-width: 100%;
    min-width: 0;
}

.transport-ride-card,
.transport-vehicle-card {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e8f0f8;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(74, 144, 217, 0.06);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.transport-card-plates {
    margin-top: 10px;
    padding-left: 20px;
    max-width: 100%;
    min-width: 0;
}

.transport-card-extra {
    display: grid;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #e2e8f0;
    max-width: 100%;
    min-width: 0;
}

.transport-card-extra-row {
    display: grid;
    grid-template-columns: minmax(64px, max-content) minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: #475569;
    font-size: 13px;
    line-height: 1.5;
    max-width: 100%;
    min-width: 0;
}

.transport-card-extra-row span {
    color: #64748b;
    font-weight: 600;
}

.transport-card-extra-row strong {
    color: #1f2937;
    font-weight: 500;
    min-width: 0;
    overflow-wrap: anywhere;
}

.transport-vehicle-cards {
    display: grid;
    gap: 10px;
    max-width: 100%;
    min-width: 0;
}

.transport-vehicle-plate {
    color: var(--theme-accent-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
}

.transport-mobile-groups {
    display: none;
}

.transport-date-table {
    display: grid;
    gap: 8px;
}

.transport-date-title {
    color: var(--theme-accent-text);
    font-size: 14px;
    font-weight: 700;
}

.classic-shell .info-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px dashed #e8ecf1;
    font-size: 14px;
}

.classic-shell .info-row:last-child {
    border-bottom: none;
}

.classic-shell .info-label {
    color: #666;
    min-width: 80px;
    flex-shrink: 0;
    font-weight: 500;
}

.classic-shell .info-value {
    color: #333;
    flex: 1;
    font-size: 14px;
    line-height: 1.8;
}

.classic-shell .phone-link {
    color: var(--theme-accent-text);
    text-decoration: none;
    font-weight: 500;
}

.classic-shell .phone-link svg {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.classic-shell .sub-card {
    border: 1.5px solid #d4e3f5;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff;
}

.classic-shell .sub-card:last-child {
    margin-bottom: 0;
}

.classic-shell .sub-card-title {
    text-align: center;
    padding: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--theme-accent-text);
    border-bottom: 1.5px solid #d4e3f5;
    background: #f5f9ff;
}

.classic-shell .sub-card-body {
    padding: 14px 16px;
}

.classic-shell .nav-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--theme-color);
    color: var(--theme-on-solid);
    text-align: center;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 12px;
}

.classic-shell .group-label {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin: 14px 0 8px;
}

.classic-shell .group-label:first-child {
    margin-top: 0;
}

.classic-shell .text-content {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    white-space: pre-line;
    word-break: break-word;
}

.classic-shell .custom-kv-list {
    display: grid;
    gap: 12px;
}

.classic-shell .custom-kv-card {
    padding: 16px 18px 16px 20px;
    border: 1px solid #e2eaf4;
    border-radius: 12px;
    background: linear-gradient(180deg, #fbfdff 0%, #f7faff 100%);
}

.classic-shell .custom-kv-primary {
    font-size: 17px;
    line-height: 1.55;
    font-weight: 650;
    color: #1f2a3d;
    letter-spacing: 0.01em;
    white-space: pre-wrap;
}

.classic-shell .custom-kv-secondary {
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
    color: #4f6078;
    white-space: pre-wrap;
}

.classic-shell .custom-kv-details {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #d8e3f0;
    display: grid;
    gap: 6px;
}

.classic-shell .custom-kv-details p {
    font-size: 14px;
    line-height: 1.75;
    color: #314158;
    white-space: pre-wrap;
}

.classic-shell .live-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--theme-color);
    color: var(--theme-on-solid);
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
}

.classic-shell .live-btn svg {
    width: 20px;
    height: 20px;
}

.classic-shell .schedule-date-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 16px 16px;
    background: #fafcfe;
    border-bottom: 1px solid #e8f0f8;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.classic-shell .schedule-date-tabs::-webkit-scrollbar {
    display: none;
}

.classic-shell .schedule-tab {
    flex-shrink: 0;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    background: #fff;
    border: 1px solid #d4e3f5;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1.3;
}

.classic-shell .schedule-tab .tab-weekday {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 1px;
}

.classic-shell .schedule-tab.active {
    background: var(--theme-color);
    color: var(--theme-on-solid);
    border-color: var(--theme-color);
}

.classic-shell .schedule-tab.active .tab-weekday {
    opacity: 0.9;
}

.classic-shell .schedule-cards-container {
    padding: 8px 16px 16px;
}

.classic-shell .schedule-item-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid #e8f0f8;
    box-shadow: 0 2px 8px rgba(74, 144, 217, 0.06);
}

.classic-shell .schedule-time {
    font-size: 15px;
    font-weight: 600;
    color: var(--theme-accent-text);
    margin-bottom: 8px;
}

.classic-shell .schedule-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
    line-height: 1.5;
}

.classic-shell .schedule-location svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    stroke: var(--theme-accent-text);
}

.classic-shell .schedule-content {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    padding-left: 20px;
}

.classic-shell .schedule-content svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: #888;
}

.schedule-content-text-multiline {
    white-space: pre-line;
}

.classic-shell .schedule-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 14px;
}

body[data-mode="showcase"] .hero {
    padding-top: 28px;
}

body[data-mode="showcase"] .hero-has-poster::before {
    background:
        linear-gradient(90deg, rgba(7, 17, 29, 0.82) 0%, rgba(7, 17, 29, 0.54) 42%, rgba(7, 17, 29, 0.74) 100%);
}

body[data-mode="showcase"] .hero-poster {
    filter: saturate(0.96) brightness(0.78);
}

body[data-mode="showcase"] .hero-content {
    min-height: 360px;
    align-content: end;
    padding: 44px 36px;
}

body[data-mode="showcase"] .hero-title {
    max-width: 820px;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

body[data-mode="minimal"] .hero-content {
    color: var(--text-main);
    min-height: 0;
    padding: 26px 24px;
}

body[data-mode="minimal"] .hero-surface::before {
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--theme-color-light) 24%, transparent), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.96) 100%);
}

body[data-mode="minimal"] .hero-has-poster::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 250, 255, 0.96) 100%);
}

body[data-mode="minimal"] .hero-poster {
    opacity: 0.12;
    object-fit: cover;
    mix-blend-mode: multiply;
}

body[data-mode="minimal"] .hero-kicker,
body[data-mode="minimal"] .hero-subtitle,
body[data-mode="minimal"] .hero-desc {
    color: var(--text-subtle);
}

body[data-mode="minimal"] .hero-meta-item {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(97, 124, 160, 0.16);
    color: var(--text-main);
}

body[data-mode="minimal"] .section-nav-inner {
    background: rgba(255, 255, 255, 0.88);
}

body[data-mode="minimal"] .nav-chip.active {
    background: color-mix(in srgb, var(--theme-color) 12%, white);
    color: var(--theme-color-dark);
    box-shadow: none;
}

body[data-mode="classic"] .hero-content {
    min-height: 240px;
    align-content: end;
}

body[data-mode="classic"] .section-nav-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

body[data-mode="classic"] .nav-chip {
    flex-direction: column;
    justify-content: center;
    min-height: 92px;
    text-align: center;
    border-radius: 18px;
    padding: 12px 8px;
}

body[data-mode="classic"] .nav-chip svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 900px) {
    body[data-mode="classic"] .section-nav-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .landing-inner {
        width: 100%;
    }

    .landing-mode-pill {
        top: 16px;
        left: 16px;
    }

    .landing-info-card {
        padding: 22px 18px 106px;
    }

    .landing-info-inner {
        padding: 26px 20px 22px;
        border-radius: 24px;
    }

    .landing-content {
        padding: 0 18px 30px;
    }

    .hero,
    .section-nav,
    .content-shell {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-content,
    body[data-mode="showcase"] .hero-content,
    body[data-mode="minimal"] .hero-content {
        padding: 24px 18px;
    }

    .section-head,
    .section-body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .info-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    body[data-mode="classic"] .section-nav-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .classic-shell .tag-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .classic-shell .tag-btn {
        font-size: 13px;
        padding: 10px 3px 6px;
        gap: 6px;
    }

    .classic-shell .tag-btn .tag-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .classic-shell .tag-btn .tag-icon svg {
        width: 24px;
        height: 24px;
    }

    .classic-container {
        padding: 12px 8px 24px;
    }

    .transport-desktop-main {
        display: none;
    }

    .transport-mobile-groups {
        display: grid;
        gap: 14px;
    }

    .transport-mobile-groups .transport-table {
        min-width: 520px;
    }

    .transport-vehicle-table .transport-table {
        min-width: 600px;
    }

    .classic-shell .info-row {
        display: block;
    }

    .classic-shell .info-label {
        display: block;
        margin-bottom: 4px;
    }
}
