/* === 全局样式 - 完整保留原有所有样式 === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #1e2a3a;
    line-height: 1.2;
    width: 100%;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ----- 固定顶栏 ----- */
.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #f5f7fa;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

/* 公告栏 */
.announcement-bar {
    width: 100%;
    background-color: #fff9ed;
    border-bottom: 0.5px solid #ffe6c6;
    border-top: 0.5px solid #ffe6c6;
    padding: 2px 0;
    overflow: hidden;
    position: relative;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    animation: scrollAnnouncement 20s linear infinite;
}

.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 7px;
    color: #b85c1a;
    margin-right: 16px;
    flex-shrink: 0;
    background: rgba(255,245,235,0.5);
    padding: 1px 6px;
    border-radius: 10px;
}

.announcement-icon {
    font-size: 8px;
    color: #e67e22;
}

.announcement-highlight {
    background-color: #fee9d1;
    padding: 1px 4px;
    border-radius: 8px;
    font-size: 6px;
    color: #a04000;
    font-weight: 600;
}

@keyframes scrollAnnouncement {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.announcement-bar::before,
.announcement-bar::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.announcement-bar::before {
    left: 0;
    background: linear-gradient(to right, #fff9ed 20%, transparent);
}

.announcement-bar::after {
    right: 0;
    background: linear-gradient(to left, #fff9ed 20%, transparent);
}

/* 工具条 */
.utility-bar {
    display: flex;
    align-items: center;
    padding: 3px 6px;
    background: #f5f7fa;
    border-bottom: 0.5px solid #e6eaef;
    gap: 5px;
    flex-wrap: wrap;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: white;
    border: 0.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 2px 8px;
    flex: 2 1 130px;
    height: 26px;
    transition: all 0.2s;
}

.search-box:focus-within {
    border-color: #4a6fa5;
    box-shadow: 0 0 0 3px rgba(74,111,165,0.25);
}

.search-box span {
    color: #94a3b8;
    margin-right: 3px;
    font-size: 9px;
}

.search-box input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 9px;
    outline: none;
    color: #1e2a3a;
}

.filter-group {
    display: flex;
    background: #edf2f7;
    padding: 2px;
    border-radius: 18px;
}

.filter-tab {
    padding: 3px 10px;
    font-size: 8px;
    border-radius: 18px;
    background: transparent;
    color: #4a5b6f;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.15s ease;
}

.filter-tab.active {
    background: white;
    color: #1e2a3a;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    font-weight: 600;
}

.sort-selector {
    display: flex;
    align-items: center;
    gap: 1px;
    background: white;
    border: 0.5px solid #dde2e9;
    border-radius: 16px;
    padding: 2px 6px;
    height: 24px;
    font-size: 8px;
}

.sort-selector select {
    border: none;
    background: transparent;
    font-size: 8px;
    font-weight: 500;
    color: #1e2a3a;
    outline: none;
    cursor: pointer;
}

.merchant-entry-btn {
    background-color: #4a6fa5;
    color: white;
    border-radius: 18px;
    padding: 4px 10px;
    font-size: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    white-space: nowrap;
    border: none;
    box-shadow: 0 2px 5px rgba(74,111,165,0.3);
    height: 24px;
    transition: all 0.2s;
}
.merchant-entry-btn:hover {
    background-color: #5c7fb0;
    transform: scale(1.05);
}

/* 数据看板 */
.stats-dashboard {
    background: white;
    margin: 4px 6px 6px 6px;
    padding: 4px 8px;
    border-radius: 10px;
    border: 0.5px solid #e2e9f2;
    display: flex;
    justify-content: space-around;
    font-size: 8px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.stat-value {
    font-weight: 700;
    font-size: 11px;
    color: #2a4d7a;
}

.stat-label {
    color: #6c819e;
    font-size: 7px;
}

/* 可滚动内容区域 */
.scrollable-content {
    position: absolute;
    top: 114px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    padding: 0 6px 10px;
    -webkit-overflow-scrolling: touch;
}

/* 商家头部 */
.merchants-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4px 0 6px 0;
    padding-top: 2px;
}

.merchants-title {
    font-size: 10px;
    font-weight: 700;
    color: #1f3a57;
    padding-left: 4px;
    border-left: 2px solid #4a6fa5;
}

.merchant-count {
    background: #e1e8f0;
    color: #2a4d7a;
    font-size: 8px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 18px;
}

/* 商家卡片 */
.merchant-card {
    background-color: white;
    border-radius: 6px;
    border: 0.5px solid #edf0f3;
    padding: 6px 10px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
}

.merchant-card:hover {
    border-color: #a3c0e0;
    background: #fafdff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74,111,165,0.08);
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #fafafa;
}

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

.merchant-info {
    flex-grow: 1;
    pointer-events: none;
}

.merchant-name {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.admin-badge {
    background-color: #4a6fa5;
    color: white;
    font-size: 6px;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 12px;
}

.merchant-desc {
    font-size: 7px;
    color: #5e6f88;
    margin-bottom: 3px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.merchant-details {
    display: flex;
    gap: 6px;
    font-size: 7px;
    flex-wrap: wrap;
}

.deposit, .level {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 1px 6px;
    border-radius: 4px;
    background-color: #f1f5f9;
    color: #2d4059;
    cursor: pointer;
    font-size: 7px;
    font-weight: 500;
    pointer-events: auto;
}

.deposit {
    background-color: #ecf3fa;
    color: #1f4973;
}

.level {
    background-color: #e8f0fe;
    color: #2a4d7a;
}

/* 图标样式 */
.icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    margin-right: 2px;
}

.icon-shield { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3E%3Cpath d='M8 0L1 3v6c0 4 7 7 7 7s7-3 7-7V3L8 0z'/%3E%3C/svg%3E"); }
.icon-level { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3E%3Cpath d='M8 0L0 8l8 8 8-8-8-8zm0 12L4 8l4-4 4 4-4 4z'/%3E%3C/svg%3E"); }
.icon-folder { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3E%3Cpath d='M14 4H8L6 2H2v12h12V4z'/%3E%3C/svg%3E"); }
.icon-id { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3E%3Crect x='2' y='2' width='12' height='12' rx='2' fill='none' stroke='%23333' stroke-width='1'/%3E%3Ccircle cx='8' cy='6' r='2' fill='%23333'/%3E%3Cpath d='M4 12c0-2 2-3 4-3s4 1 4 3' fill='none' stroke='%23333' stroke-width='1'/%3E%3C/svg%3E"); }
.icon-star { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3E%3Cpath d='M8 0l2.5 5.5L16 6l-4 4 1 6-5-3-5 3 1-6-4-4 5.5-.5L8 0z'/%3E%3C/svg%3E"); }
.icon-order { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3E%3Cpath d='M3 1h10v2H3V1zm0 4h10v2H3V5zm0 4h10v2H3V9zm0 4h6v2H3v-2z'/%3E%3C/svg%3E"); }
.icon-phone { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3E%3Cpath d='M11 10c-1 1-1 2-2 2s-2-1-3-2-2-2-2-3 1-1 2-2-1-3-2-3-2 1-3 2c0 3 4 8 7 8 1 0 2-1 2-2s-1-2-2-2z'/%3E%3C/svg%3E"); }
.icon-mail { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3E%3Cpath d='M1 3h14v10H1V3zm7 5L3 5h10l-5 3z'/%3E%3C/svg%3E"); }
.icon-time { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3E%3Ccircle cx='8' cy='8' r='6' fill='none' stroke='%23333' stroke-width='1'/%3E%3Cpath d='M8 4v4l2 2' stroke='%23333' stroke-width='1' fill='none'/%3E%3C/svg%3E"); }
.icon-tag { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3E%3Cpath d='M1 1h6l8 8-6 6-8-8V1zm3 2a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/%3E%3C/svg%3E"); }
.icon-heart { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3E%3Cpath d='M8 14s-4-3-4-5.5C4 6 6 4 8 4s4 2 4 4.5c0 2.5-4 5.5-4 5.5z'/%3E%3C/svg%3E"); }
.icon-chat { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3E%3Cpath d='M1 2h14v10H8l-3 3v-3H1V2z'/%3E%3C/svg%3E"); }
.icon-shop { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3E%3Crect x='2' y='6' width='12' height='8' fill='none' stroke='%23333' stroke-width='1'/%3E%3Cpath d='M3 2h10l2 4H1l2-4z' fill='%23333'/%3E%3C/svg%3E"); }
.icon-check { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3E%3Cpath d='M6 12L2 8l1-1 3 3 7-7 1 1-8 8z'/%3E%3C/svg%3E"); }

/* 弹窗样式 - 完整保留 */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    visibility: hidden;
}

.pro-popup {
    width: 260px;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 40px -8px rgba(0,0,0,0.3);
    animation: popFade 0.25s;
}

.popup-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.popup-content {
    position: relative;
    z-index: 2;
    padding: 14px 12px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    border-radius: 18px;
}

@keyframes popFade {
    from { opacity: 0.5; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.popup-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    z-index: 3;
}

.popup-merchant-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
}

.popup-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.8);
    flex-shrink: 0;
}

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

.popup-name-tag {
    flex: 1;
}

.popup-merchant-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.popup-merchant-badge {
    display: inline-block;
    background: rgba(255,255,255,0.8);
    color: #1e3a5f;
    font-size: 7px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 10px;
}

.info-item {
    background: rgba(0,0,0,0.4);
    padding: 4px 6px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.info-label {
    font-size: 7px;
    color: rgba(255,255,255,0.8);
}

.info-value {
    font-size: 10px;
    font-weight: 700;
    color: white;
}

.contact-bar {
    background: rgba(0,0,0,0.3);
    padding: 6px 8px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 7px;
    color: white;
}

.contact-item .icon {
    filter: brightness(0) invert(1);
    width: 10px;
    height: 10px;
}

.desc-section {
    margin-bottom: 10px;
}

.desc-title {
    font-size: 8px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.desc-title .icon {
    filter: brightness(0) invert(1);
}

.desc-content {
    font-size: 7px;
    color: white;
    line-height: 1.4;
    background: rgba(0,0,0,0.3);
    padding: 6px 8px;
    border-radius: 8px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
}

.service-tag {
    background: rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 6px;
    color: white;
}

.popup-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.action-btn {
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
    padding: 5px 0;
    font-size: 7px;
    font-weight: 600;
    color: #2d4059;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.action-btn .icon {
    width: 12px;
    height: 12px;
    margin-bottom: 2px;
}

/* 保证金/等级弹窗 */
.tiny-popup {
    width: 200px;
    background: white;
    border-radius: 14px;
    padding: 12px;
    animation: popFade 0.2s;
}

.tiny-popup .popup-title {
    font-size: 9px;
    font-weight: 700;
    margin-bottom: 8px;
    border-bottom: 0.5px solid #eef3f8;
    padding-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rank-list {
    list-style: none;
}

.rank-list li {
    font-size: 8px;
    padding: 4px 0;
    display: flex;
    align-items: center;
}

.rank-icon {
    width: 6px;
    height: 6px;
    background: #4a6fa5;
    border-radius: 50%;
    margin-right: 6px;
}

/* 提示浮层 */
.tip-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30,40,55,0.95);
    color: #f0f4fa;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 9px;
    z-index: 3000;
    display: none;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.no-result {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    color: #9aabbc;
    border: 0.5px dashed #d0dfee;
    font-size: 9px;
}

/* 权益弹窗 */
.equity-popup {
    width: 280px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    animation: popFade 0.25s;
}

.equity-header {
    background: #4a6fa5;
    color: white;
    padding: 14px 16px;
    position: relative;
}

.equity-header h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.equity-header p { font-size: 8px; opacity: 0.9; }

.equity-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(255,255,255,0.3);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
}

.equity-content { padding: 16px; max-height: 380px; overflow-y: auto; background: #f9fbfe; }
.benefit-list { background: white; border-radius: 14px; padding: 8px 12px; margin-bottom: 16px; border: 0.5px solid #eaf0f6; }
.benefit-item { display: flex; align-items: center; gap: 8px; font-size: 9px; padding: 6px 0; border-bottom: 0.5px dashed #eef2f6; }
.benefit-icon { width: 22px; height: 22px; background: #eaf1fb; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.custom-card { background: white; border-radius: 14px; padding: 12px; margin-bottom: 16px; border: 0.5px solid #eaf0f6; }
.custom-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; font-size: 9px; }
.custom-row input { border: 0.5px solid #d0ddee; border-radius: 20px; padding: 5px 10px; font-size: 8px; width: 150px; }
.color-picker { display: flex; gap: 5px; }
.color-dot { width: 24px; height: 24px; border-radius: 50%; border: 1px solid #ccc; cursor: pointer; }
.color-dot.selected { border: 2px solid #4a6fa5; }
.upload-area { background: #f2f6fc; border-radius: 12px; padding: 8px; text-align: center; border: 1px dashed #a0b8d4; cursor: pointer; }
.goods-list { max-height: 100px; overflow-y: auto; font-size: 8px; margin-top: 6px; background: #ecf2f9; border-radius: 8px; padding: 6px; }
.goods-item { display: flex; justify-content: space-between; padding: 2px 0; }
.data-panel { background: #1e2f40; color: #bcd3f0; border-radius: 14px; padding: 10px; margin-bottom: 16px; font-size: 7px; }
.data-row { display: flex; justify-content: space-between; margin-bottom: 4px; }
.equity-footer { display: flex; border-top: 0.5px solid #e0e8f2; }
.footer-btn { flex: 1; text-align: center; padding: 12px 0; font-size: 10px; font-weight: 600; cursor: pointer; background: white; }
.footer-btn.cancel { color: #7a8faa; }
.footer-btn.confirm { color: #4a6fa5; }

/* 新增精致入驻弹窗 */
.welcome-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2500;
    visibility: hidden;
    backdrop-filter: blur(3px);
    transition: visibility 0s linear 0.2s, opacity 0.2s ease;
    opacity: 0;
}
.welcome-popup-overlay.active {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 0.2s ease;
}
.welcome-popup-overlay.closing {
    opacity: 0;
    transition: opacity 0.2s ease;
    visibility: visible;
}
.welcome-tiny-popup {
    width: 320px;
    max-width: 90vw;
    background: transparent;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0,0,0,0.25);
    animation: welcomeSlideUp 0.3s cubic-bezier(0.2,0.9,0.4,1.1);
}
.welcome-popup-overlay.closing .welcome-tiny-popup {
    animation: welcomeSlideDown 0.2s ease forwards;
}
@keyframes welcomeSlideUp {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes welcomeSlideDown {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to { opacity: 0; transform: translateY(20px) scale(0.96); }
}
.welcome-header-bar {
    background: #2c3e4e;
    padding: 14px 16px;
    position: relative;
}
.welcome-header-bar h3 {
    color: white;
    font-size: 14px;
    font-weight: 600;
}
.welcome-header-bar p {
    color: rgba(255,255,255,0.75);
    font-size: 7px;
    margin-top: 4px;
}
.welcome-close-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    background: rgba(255,255,255,0.2);
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    cursor: pointer;
}
.welcome-content-white {
    background: white;
    padding: 16px 16px 0 16px;
}
.welcome-intro-split {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}
.welcome-split-item {
    flex: 1;
    background: #f8fafd;
    border-radius: 14px;
    padding: 8px 6px;
    text-align: center;
}
.split-icon { font-size: 18px; margin-bottom: 4px; }
.split-title { font-size: 9px; font-weight: 700; color: #2c3e4e; }
.split-desc { font-size: 6px; color: #6c7a8a; }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 12px 0;
}
.benefit-chip {
    background: #f0f4fa;
    border-radius: 20px;
    padding: 5px 4px;
    text-align: center;
}
.benefit-chip .chip-value { font-weight: 800; font-size: 10px; color: #2a4d7a; }
.benefit-chip .chip-label { font-size: 6px; color: #5b6f8c; }
.welcome-long-text {
    background: #fef9e8;
    border-radius: 14px;
    padding: 10px 12px;
    margin: 10px 0;
    font-size: 7px;
    line-height: 1.45;
    color: #4a5a6e;
    border-left: 3px solid #e67e22;
}
.text-highlight { color: #e67e22; font-weight: 600; }
.welcome-bottom-img {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    margin-top: 12px;
    line-height: 0;
}
.welcome-bottom-img img {
    width: 100%;
    height: auto;
    display: block;
}
.welcome-btn-area {
    padding: 14px 16px 18px;
    background: white;
}
.welcome-sign-btn {
    width: 100%;
    background: #4a6fa5;
    color: white;
    border: none;
    border-radius: 40px;
    padding: 10px 0;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
}