/* ========== 全局样式 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4a90e2;
    --primary-hover: #357abd;
    --primary-light: #e8f4f8;
    --secondary-color: #50c878;
    --accent-color: #ff6b6b;
    --warning-color: #f39c12;
    --bg-color: #f5f7fa;
    --card-bg: #ffffff;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --border-color: #e1e8ed;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
    --radius: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    padding: 20px;
    color: var(--text-primary);
    position: relative;
    overflow-x: hidden;
}

body.intro-active {
    padding: 0;
    background: #f7f9fc;
}

body.intro-active .bg-overlay {
    display: none;
}

body.intro-active::before,
body.intro-active::after {
    opacity: 0.18;
}

body.intro-active .container {
    display: none;
}

.intro-landing {
    display: none;
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 252, 0.98));
}

body.intro-active .intro-landing {
    display: block;
}

.intro-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 24px;
}

.intro-hero {
    min-height: min(760px, 92vh);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    align-items: center;
    gap: 32px;
    padding-bottom: 28px;
}

.intro-copy {
    padding: 20px 0;
}

.intro-kicker {
    display: inline-flex;
    padding: 7px 12px;
    border: 1px solid #c9dcf2;
    border-radius: 999px;
    color: #245b91;
    background: #eef6ff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.intro-copy h1 {
    max-width: 760px;
    color: #18324f;
    font-size: clamp(2rem, 5vw, 4.6rem);
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 18px;
}

.intro-lead {
    max-width: 680px;
    color: #536577;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.intro-enter-btn {
    min-height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 8px;
    background: #1f6fbb;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(31, 111, 187, 0.22);
}

.intro-enter-btn:hover {
    background: #185f9f;
}

.intro-hero-media {
    position: relative;
    min-height: 460px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(24, 50, 79, 0.16);
}

.intro-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    display: block;
}

.intro-hero-badge {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px;
    border-radius: 8px;
    color: #18324f;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
}

.intro-hero-badge strong,
.intro-hero-badge span {
    display: block;
}

.intro-hero-badge strong {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.intro-hero-badge span {
    color: #536577;
    line-height: 1.5;
}

.intro-section {
    padding: 34px;
    margin-bottom: 22px;
    background: #fff;
    border: 1px solid #e5edf5;
    border-radius: 8px;
    box-shadow: 0 10px 32px rgba(24, 50, 79, 0.08);
}

.intro-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.intro-section-title span {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: #1f6fbb;
    font-weight: 900;
    font-size: 0.9rem;
}

.intro-section-title h2 {
    font-size: 1.65rem;
    color: #18324f;
}

.company-panel > p {
    max-width: 880px;
    color: #536577;
    line-height: 1.85;
    font-size: 1.05rem;
    margin-bottom: 22px;
}

.company-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.company-points article {
    overflow: hidden;
    border-radius: 8px;
    background: #f6f9fc;
    border: 1px solid #e5edf5;
}

.company-points img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #eef3f8;
}

.company-point-copy {
    padding: 16px 18px 18px;
}

.company-points strong,
.company-points span {
    display: block;
}

.company-points strong {
    color: #18324f;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.company-points span {
    color: #627386;
    line-height: 1.6;
}

.interview-carousel {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    isolation: isolate;
}

.interview-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.interview-carousel .interview-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 14px, 0) scale(0.992);
    transform-origin: center;
    backface-visibility: hidden;
    will-change: transform, opacity;
    contain: layout paint;
    animation: interviewCardCycle 24s infinite cubic-bezier(0.22, 1, 0.36, 1);
}

.interview-carousel .interview-card:nth-child(2) {
    animation-delay: 8s;
}

.interview-carousel .interview-card:nth-child(3) {
    animation-delay: 16s;
}

.interview-photo {
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    overflow: hidden;
}

.interview-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.interview-card blockquote {
    color: #253f5b;
    font-size: 1.18rem;
    line-height: 1.85;
    font-weight: 650;
    margin-bottom: 12px;
}

.interview-card p {
    color: #6d7d8f;
}

@keyframes interviewCardCycle {
    0% {
        opacity: 0;
        transform: translate3d(0, 14px, 0) scale(0.992);
    }
    5%,
    30% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        pointer-events: auto;
    }
    38%,
    100% {
        opacity: 0;
        transform: translate3d(0, -14px, 0) scale(0.992);
    }
}

.success-marquee {
    overflow: hidden;
    border-radius: 8px;
}

.success-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: successMarquee 36s linear infinite;
}

.success-track figure {
    width: 280px;
    flex: 0 0 auto;
    background: #f6f9fc;
    border: 1px solid #e5edf5;
    border-radius: 8px;
    overflow: hidden;
}

.success-track img {
    width: 100%;
    height: 210px;
    object-fit: contain;
    background: #eef3f8;
    display: block;
}

.success-track figcaption {
    padding: 10px 12px;
    color: #536577;
    font-size: 0.92rem;
}

@keyframes successMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 8px));
    }
}

/* 背景图片层 - 使用多层实现淡入淡出 */
body::before,
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: -2;
}

body::before {
    background-image: url('北大1.png');
    animation: bgFade1 20s infinite;
}

body::after {
    background-image: url('浙大1.png');
    animation: bgFade2 20s infinite;
}

/* 渐变遮罩层 - 需要额外的元素 */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 30%, rgba(255,255,255,0.7) 60%, #ffffff 100%);
    z-index: -1;
    pointer-events: none;
}

/* 背景淡入淡出动画 - 第一层 */
@keyframes bgFade1 {
    0%, 20% {
        opacity: 1;
        background-image: url('北大1.png');
    }
    25%, 45% {
        opacity: 0;
        background-image: url('北大1.png');
    }
    50%, 70% {
        opacity: 0;
        background-image: url('清华1.png');
    }
    75%, 95% {
        opacity: 0;
        background-image: url('北大2.png');
    }
    100% {
        opacity: 1;
        background-image: url('北大1.png');
    }
}

/* 背景淡入淡出动画 - 第二层 */
@keyframes bgFade2 {
    0%, 20% {
        opacity: 0;
        background-image: url('浙大1.png');
    }
    25%, 45% {
        opacity: 1;
        background-image: url('浙大1.png');
    }
    50%, 70% {
        opacity: 1;
        background-image: url('清华1.png');
    }
    75%, 95% {
        opacity: 1;
        background-image: url('北大2.png');
    }
    100% {
        opacity: 0;
        background-image: url('浙大1.png');
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* ========== 头部样式 ========== */
.header {
    text-align: center;
    padding: 30px 20px;
    background: var(--card-bg);
    border-radius: var(--radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ========== 主内容区 ========== */
.main-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 1100px) {
    .main-content {
        grid-template-columns: 1fr;
    }
}

.form-section,
.result-section {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.form-section h2,
.result-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

/* ========== 表单样式 ========== */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.required {
    color: var(--accent-color);
}

.form-group select,
.form-group input[type="number"],
.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

/* 分隔线 */
.divider-line {
    height: 1px;
    background: var(--border-color);
    margin: 20px 0;
}

.section-hint {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 15px 0;
}

.form-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.quick-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 复选框组 */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.2s;
}

.checkbox-item:hover {
    background: var(--primary-light);
}

.checkbox-item input[type="checkbox"] {
    margin-right: 6px;
    cursor: pointer;
}

/* ========== 按钮样式 ========== */
.btn-primary {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-text, .btn-loader {
    transition: opacity 0.3s;
}

.btn-loader {
    display: none;
}

/* 快速测试按钮 */
.btn-quick-test {
    padding: 8px 16px;
    background: var(--warning-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-quick-test:hover {
    background: #e67e22;
    transform: scale(1.05);
}

.btn-account-fill {
    padding: 8px 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-account-fill:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

.btn-secondary {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--secondary-color), #45b794);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-clear {
    padding: 8px 16px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    opacity: 0.9;
}

/* ========== 结果区域 ========== */
.result-content {
    min-height: 400px;
}

.result-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
    color: var(--text-secondary);
    text-align: center;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.result-placeholder p {
    margin: 8px 0;
    font-size: 1.1rem;
}

/* 加载动画 */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.2rem !important;
    color: var(--primary-color) !important;
    font-weight: 500;
    margin-top: 20px !important;
}

.loading-sub {
    font-size: 0.95rem !important;
    color: var(--text-secondary) !important;
    margin-top: 8px !important;
}

/* ========== 学校专业卡片样式 ========== */
.suggestion-content {
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 30px;
}

/* ========== 填报指南板块 ========== */
.guide-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-color);
}

.guide-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-content {
    line-height: 1.8;
    color: var(--text-primary);
}

.guide-content h4 {
    color: var(--text-primary);
    margin: 15px 0 10px;
    font-size: 1.1rem;
}

.guide-content ul,
.guide-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.guide-content li {
    margin-bottom: 8px;
}

.guide-content p {
    margin-bottom: 12px;
}

.guide-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.result-header {
    background: var(--primary-light);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.result-header h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.result-time {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* 学校卡片 */
.school-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.school-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

/* 收藏按钮 */
.favorite-btn {
    min-width: 92px;
    height: 38px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid #d7dee8;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    color: #9aa6b2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
}

.favorite-btn:hover {
    background: white;
    transform: scale(1.1);
    border-color: #f1c40f;
    color: #f1c40f;
}

.favorite-btn.favorited {
    color: #f1c40f;
    border-color: #f1c40f;
    background: #fff9df;
}

.favorite-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.favorite-label {
    line-height: 1;
}

/* ========== 学校-专业组合卡片样式 ========== */
.school-major-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.school-major-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.card-header {
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid var(--border-color);
}

.card-body {
    padding: 16px 20px;
}

.school-major-card .school-title-row,
.school-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.school-major-card .school-name,
.school-name {
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: 800;
    color: #183b65;
    padding-left: 10px;
    border-left: 4px solid var(--primary-color);
}

.school-major-card .separator,
.separator {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 600;
}

.school-major-card .major-name,
.major-name {
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--primary-color);
}

.school-major-card .major-score-info,
.major-score-info {
    font-size: 0.95rem;
    color: var(--text-primary);
    padding: 10px 16px;
    background: var(--primary-light);
    border-radius: 8px;
    margin-top: 12px;
    line-height: 1.5;
}

.school-major-card .major-reason,
.major-reason {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    background: #fff9e6;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 10px;
    border-left: 3px solid var(--warning-color);
}

.school-card-header {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid var(--border-color);
}

.school-logo {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    background: #e8f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.school-info {
    flex: 1;
}

.school-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.school-name {
    font-size: 1.7rem;
    line-height: 1.2;
    font-weight: 800;
    color: #183b65;
    padding-left: 12px;
    border-left: 5px solid var(--primary-color);
    word-break: break-word;
}

.school-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 5px;
}

.school-tag {
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.tag-985 {
    background: #ffeaa7;
    color: #d63031;
}

.tag-211 {
    background: #74b9ff;
    color: #0984e3;
}

.tag-double {
    background: #55efc4;
    color: #00b894;
}

.tag-batch {
    background: #a29bfe;
    color: #6c5ce7;
}

.school-website {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 5px;
}

.school-website:hover {
    text-decoration: underline;
}

/* 专业卡片 */
.major-card {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

/* 专业列表 - 简化版 */
.majors-list {
    padding: 10px 15px;
    background: #f8f9fa;
}

.major-simple-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

.major-simple-item:last-child {
    border-bottom: none;
}

.major-name-simple {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.major-score-simple {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    background: var(--primary-light);
    padding: 2px 8px;
    border-radius: 4px;
}

/* ========== 学校卡片主体样式 ========== */
.school-body {
    padding: 15px 20px;
}

.school-reason {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    background: #fff9e6;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid var(--warning-color);
}

.majors-container {
    margin-top: 15px;
}

.majors-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}

.major-item {
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.major-item:hover {
    background: var(--primary-light);
}

.major-item:last-child {
    margin-bottom: 0;
}

.major-header {
    margin-bottom: 8px;
}

.major-name-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.major-scores {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.major-reason-mini {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 2px solid var(--primary-color);
}

.major-row-label {
    font-weight: 600;
    color: var(--primary-color);
    background: var(--primary-light);
    padding: 6px 10px;
    border-radius: 4px;
}

.major-card:last-child {
    border-bottom: none;
}

.major-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.major-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.major-favorite {
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--border-color);
    transition: all 0.3s ease;
}

.major-favorite:hover {
    color: var(--warning-color);
}

.major-favorite.favorited {
    color: #f1c40f;
}

.major-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.info-item {
    background: var(--bg-color);
    padding: 8px 12px;
    border-radius: 6px;
}

.info-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 3px;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.info-value.highlight {
    color: var(--primary-color);
}

.major-reason {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    background: var(--primary-light);
    padding: 10px 12px;
    border-radius: 6px;
}

/* 志愿梯度标签 */
.gradient-label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.gradient-chong {
    background: #ffeaa7;
    color: #d63031;
}

.gradient-wen {
    background: #74b9ff;
    color: #0984e3;
}

.gradient-bao {
    background: #55efc4;
    color: #00b894;
}

/* ========== 评价区域 ========== */
.feedback-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.feedback-section h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feedback-hint {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.feedback-form {
    background: var(--bg-color);
    padding: 20px;
    border-radius: 8px;
}

.feedback-form .form-group {
    margin-bottom: 15px;
}

.feedback-form label {
    font-weight: 600;
    margin-bottom: 8px;
}

/* ========== 收藏对比区域 ========== */
.compare-section {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.compare-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.compare-header h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

#favoriteCount {
    color: var(--warning-color);
    font-weight: 600;
}

.compare-content {
    min-height: 200px;
}

.compare-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: var(--text-secondary);
    text-align: center;
    padding: 40px;
}

.compare-placeholder p {
    margin: 8px 0;
}

/* 对比表格 */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.compare-table th,
.compare-table td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    min-width: 180px;
    line-height: 1.6;
}

.compare-table th:last-child,
.compare-table td:last-child {
    border-right: none;
}

.compare-table .first-col {
    text-align: left;
    font-weight: 600;
    background: var(--bg-color);
    position: sticky;
    left: 0;
    z-index: 10;
    min-width: 150px;
}

.compare-table th {
    background: var(--primary-light);
    font-weight: 600;
    color: var(--text-primary);
}

.compare-table .school-col-header {
    font-size: 1.12rem;
    color: #183b65;
    font-weight: 800;
    text-align: center;
}

.compare-table .major-name-cell {
    font-weight: 500;
    color: var(--text-primary);
}

.compare-table .score-cell {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.compare-table .keywords-cell {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.compare-table .score-row:hover td:not(.first-col),
.compare-table .major-row:hover td:not(.first-col) {
    background: var(--primary-light);
}

.compare-table tr:hover td:not(.first-col) {
    background: var(--primary-light);
}

.compare-school-name {
    font-weight: 600;
    color: var(--primary-color);
}

.compare-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.row-note {
    display: inline-block;
    margin-top: 4px;
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 400;
}

.major-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.major-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef6ff;
    color: #245b91;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.compare-remove {
    color: var(--accent-color);
    cursor: pointer;
    font-size: 0.9rem;
}

.compare-remove:hover {
    text-decoration: underline;
}

/* ========== 聊天区域 ========== */
.chat-section {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 20px 30px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.chat-section h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.chat-container {
    display: flex;
    flex-direction: column;
    height: 280px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    background: var(--bg-color);
    border-radius: 8px;
    margin-bottom: 15px;
}

.chat-message {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.chat-message .message-text {
    max-width: 80%;
    padding: 10px 16px;
    border-radius: 12px;
    line-height: 1.5;
    word-wrap: break-word;
}

.chat-message.system .message-text {
    background: #e8f4f8;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.chat-message.user .message-text {
    background: var(--primary-color);
    color: white;
}

.chat-message.assistant .message-text {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.chat-input-area {
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.chat-input-area input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-send {
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-send:hover {
    background: var(--primary-hover);
}

.btn-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========== 页脚 ========== */
.footer {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ========== 滚动条样式 ========== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* ========== 响应式 ========== */
@media (max-width: 600px) {
    body {
        padding: 0;
        background: #f5f7fa;
    }

    body::before,
    body::after,
    .bg-overlay {
        display: none;
    }

    .container {
        max-width: none;
    }

    .intro-landing {
        background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 46%, #eef4fa 100%);
    }

    .intro-shell {
        padding: 20px 14px 30px;
    }

    .intro-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 22px 0 30px;
    }

    .intro-copy {
        padding: 0;
    }

    .intro-kicker {
        margin-bottom: 16px;
    }

    .intro-copy h1 {
        font-size: 2.28rem;
        line-height: 1.12;
        margin-bottom: 18px;
    }

    .intro-lead {
        font-size: 1.03rem;
        line-height: 1.78;
        margin-bottom: 26px;
    }

    .intro-enter-btn {
        width: 100%;
        min-height: 54px;
    }

    .intro-hero-media {
        min-height: 320px;
        box-shadow: 0 18px 38px rgba(24, 50, 79, 0.18);
    }

    .intro-hero-media img {
        min-height: 320px;
    }

    .intro-section {
        padding: 24px 18px;
        margin-bottom: 20px;
        box-shadow: 0 14px 32px rgba(24, 50, 79, 0.09);
    }

    .intro-section-title h2 {
        font-size: 1.36rem;
    }

    .company-points,
    .interview-card {
        grid-template-columns: 1fr;
    }

    .company-points {
        gap: 16px;
    }

    .interview-carousel {
        display: grid;
        gap: 24px;
        min-height: 0;
        overflow: visible;
    }

    .interview-card {
        align-items: start;
        gap: 18px;
    }

    .interview-carousel .interview-card {
        position: static;
        inset: auto;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        animation: none;
        contain: none;
        padding-bottom: 24px;
        border-bottom: 1px solid #e5edf5;
    }

    .interview-carousel .interview-card:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .interview-photo {
        aspect-ratio: auto;
        background: #eef3f8;
    }

    .interview-photo img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .interview-card blockquote {
        font-size: 1.03rem;
        line-height: 1.78;
        margin-bottom: 14px;
    }

    .success-track figure {
        width: 236px;
    }

    .success-track img {
        height: 178px;
    }

    .header {
        border-radius: 0;
        margin-bottom: 12px;
        padding: 22px 16px;
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    }

    .header h1 {
        font-size: 1.55rem;
        line-height: 1.25;
    }

    .subtitle {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .form-section,
    .result-section,
    .chat-section,
    .compare-section {
        padding: 18px 16px;
        border-radius: 0;
        box-shadow: none;
        margin-bottom: 12px;
        max-height: none;
        overflow: visible;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }

    .form-title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .quick-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .quick-actions button {
        flex: 1 1 140px;
        min-height: 40px;
    }

    .form-section h2,
    .result-section h2,
    .compare-header h2,
    .chat-section h2 {
        font-size: 1.2rem;
        line-height: 1.35;
    }

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

    .form-group select,
    .form-group input[type="number"],
    .form-group input[type="text"],
    .form-group textarea,
    .chat-input-area input {
        min-height: 46px;
        font-size: 16px;
        padding: 11px 12px;
    }

    .checkbox-group {
        gap: 8px;
    }

    .checkbox-item {
        flex: 1 1 calc(50% - 8px);
        min-height: 40px;
        padding: 8px 10px;
        background: #f6f9fc;
        border: 1px solid var(--border-color);
    }

    .field-lock-hint {
        position: static;
        display: inline-block;
        transform: none;
        margin-top: 6px;
        font-size: 0.8rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-unlock,
    .btn-verify {
        min-height: 48px;
        border-radius: 8px;
    }

    .school-card-header {
        flex-direction: column;
        text-align: left;
        padding-right: 15px;
    }

    .school-logo {
        margin: 0;
        width: 64px;
        height: 64px;
    }

    .school-title-row,
    .school-major-card .school-title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .school-name,
    .school-major-card .school-name {
        font-size: 1.25rem;
        width: 100%;
    }

    .school-major-card .major-name,
    .major-name {
        font-size: 1.05rem;
    }

    .favorite-btn {
        width: 100%;
        min-width: 0;
        height: 40px;
    }

    .major-info {
        grid-template-columns: 1fr;
    }

    .result-content,
    .result-placeholder,
    .loading {
        min-height: 260px;
    }

    .result-placeholder {
        padding: 20px 0;
    }

    .result-placeholder p {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .placeholder-icon {
        font-size: 2.8rem;
    }

    .compare-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-clear {
        width: 100%;
        min-height: 40px;
    }

    .compare-table {
        font-size: 0.85rem;
    }

    .compare-table th,
    .compare-table td {
        padding: 8px 10px;
        min-width: 150px;
    }

    .compare-table .first-col {
        min-width: 110px;
    }

    .chat-container {
        height: 360px;
    }

    .chat-input-area {
        gap: 8px;
    }

    .btn-send {
        width: 74px;
        padding: 0 12px;
    }

    .chat-message .message-text {
        max-width: 88%;
        font-size: 0.92rem;
    }

    .modal {
        align-items: flex-end;
    }

    .modal-content {
        width: 100%;
        max-height: 92vh;
        border-radius: 16px 16px 0 0;
    }

    .modal-header {
        border-radius: 16px 16px 0 0;
    }

    .qr-placeholder {
        width: 180px;
        height: 180px;
    }

    .footer {
        color: var(--text-secondary);
        background: #fff;
    }
}

/* ========== 动画效果 ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* ========== 专业收藏按钮 ========== */
.major-favorite {
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--border-color);
    transition: all 0.3s ease;
    padding: 2px 8px;
}

.major-favorite:hover {
    color: var(--warning-color);
    transform: scale(1.2);
}

.major-favorite.favorited {
    color: #f1c40f;
}

/* ========== 文本内容样式 ========== */
.text-content {
    line-height: 1.8;
    color: var(--text-primary);
}

.text-content h3 {
    color: var(--primary-color);
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.text-content h4 {
    color: var(--text-primary);
    margin: 15px 0 8px;
    font-size: 1.1rem;
}

.text-content ul,
.text-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.text-content li {
    margin-bottom: 8px;
}

.text-content p {
    margin-bottom: 12px;
}

.text-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ========== 解锁功能样式 ========== */
.unlock-status {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-unlock {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent-color), #ff8787);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-unlock:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.unlocked-badge {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--secondary-color), #5cd67a);
    color: white;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    animation: fadeIn 0.5s ease;
}

/* ========== 锁定字段样式 ========== */
.locked-field {
    position: relative;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.locked-field.is-locked {
    opacity: 0.5;
}

.locked-field.is-locked input,
.locked-field.is-locked textarea,
.locked-field.is-locked select {
    background: #f0f0f0;
    cursor: not-allowed;
    color: #999;
}

.locked-field.is-locked input::placeholder,
.locked-field.is-locked textarea::placeholder {
    color: #bbb;
}

/* 解锁后隐藏锁图标和提示 */
.locked-field:not(.is-locked) .lock-icon,
.locked-field:not(.is-locked) .field-lock-hint {
    display: none;
}

/* 解锁后恢复正常样式 */
.locked-field:not(.is-locked) {
    opacity: 1;
}

.locked-field:not(.is-locked) input,
.locked-field:not(.is-locked) textarea,
.locked-field:not(.is-locked) select {
    background: white;
    cursor: text;
    color: var(--text-primary);
}

.lock-icon {
    margin-left: 5px;
    filter: grayscale(0.3);
}

.field-lock-hint {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--warning-color);
    font-size: 0.85rem;
    pointer-events: none;
}

/* ========== 锁定区域样式 ========== */
.locked-section {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
    transition: all 0.3s ease;
}

.locked-section.is-locked {
    opacity: 0.5;
}

.locked-section.is-locked .chat-input-area input,
.locked-section.is-locked .btn-send {
    cursor: not-allowed;
    opacity: 0.6;
}

.locked-section:not(.is-locked) {
    opacity: 1;
    pointer-events: auto;
}

.locked-section:not(.is-locked) .lock-icon,
.locked-section:not(.is-locked) .lock-hint {
    display: none;
}

.locked-section:not(.is-locked) .chat-input-area input,
.locked-section:not(.is-locked) .btn-send {
    opacity: 1;
    cursor: pointer;
}

.locked-section:not(.is-locked) .chat-input-area input,
.locked-section:not(.is-locked) .btn-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.locked-field label {
    cursor: pointer;
}

/* ========== 激活码弹窗样式 ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 0;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    border-radius: 16px 16px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 24px;
}

.activation-info {
    text-align: center;
}

.price-info {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding: 15px;
    background: var(--primary-light);
    border-radius: 8px;
}

.price-info p {
    margin: 0;
}

.price-info strong {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.price-limited {
    display: inline-block;
    margin-top: 10px !important;
    padding: 5px 12px;
    color: var(--accent-color);
    background: rgba(255, 107, 107, 0.12);
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
}

.qr-section {
    margin: 20px 0;
}

.qr-section p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}

.qr-placeholder img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}

.qr-error {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.qr-error code {
    display: block;
    background: #f0f0f0;
    padding: 8px;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 0.85rem;
}

.qr-hint {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.divider-line {
    height: 1px;
    background: var(--border-color);
    margin: 20px 0;
}

.code-input-section {
    text-align: left;
}

.code-input-section label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 500;
}

.code-input-section input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
    margin-bottom: 12px;
}

.code-input-section input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-verify {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-verify:hover {
    background: var(--primary-hover);
}

.btn-verify:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.activation-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.activation-message.success {
    background: #d4edda;
    color: #155724;
}

.activation-message.error {
    background: #f8d7da;
    color: #721c24;
}

@media (max-width: 600px) {
    body {
        padding: 0;
        background: #f5f7fa;
    }

    body::before,
    body::after,
    .bg-overlay {
        display: none;
    }

    body.intro-active {
        background: #f7f9fc;
    }

    .container {
        max-width: none;
        width: 100%;
    }

    .header,
    .form-section,
    .result-section,
    .chat-section,
    .compare-section {
        border-radius: 0;
        box-shadow: none;
    }

    .form-section,
    .result-section {
        max-height: none;
        overflow: visible;
    }

    .btn-unlock {
        width: min(100%, 320px);
        border-radius: 8px;
    }

    .locked-field.is-locked {
        opacity: 0.68;
    }

    .field-lock-hint {
        position: static;
        display: inline-block;
        transform: none;
        margin-top: 6px;
    }

    .modal {
        align-items: flex-end;
        padding: 0;
    }

    .modal-content {
        width: 100%;
        max-width: none;
        max-height: 92vh;
        border-radius: 16px 16px 0 0;
    }

    .modal-header {
        border-radius: 16px 16px 0 0;
    }

    .modal-body {
        padding: 20px 16px 24px;
    }

    .code-input-section input {
        font-size: 16px;
    }
}
