/* 高手榜专用样式 - 简洁版 */
.gsb-container {
    background: #f5f5f5;
    min-height: 100vh;
    padding-bottom: 3rem;
    max-width: 480px;
    margin: 0 auto;
}

/* 底部固定返回导航 */
.gsb-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: #333;
    z-index: 100;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

/* 顶部标题栏 */
.gsb-header {
    background: linear-gradient(135deg, #e60012 0%, #c4000d 50%, #a0000a 100%);
    color: #fff;
    padding: 0.75rem 1rem;
    text-align: center;
    position: relative;
}

.gsb-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #ffd700 20%, #ffed4e 50%, #ffd700 80%, transparent 100%);
}

.gsb-header-title {
    font-size: clamp(1.125rem, 5vw, 1.375rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* 内容卡片 */
.gsb-card {
    background: #fff;
    margin: 0.5rem;
    border-radius: 4px;
}

.gsb-card-header {
    padding: 0.75rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.gsb-title {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.gsb-subtitle {
    font-size: 0.9375rem;
    color: #333;
}

.gsb-subtitle .highlight {
    color: #c41e3a;
    font-weight: 500;
}

/* 资料列表 */
.gsb-list {
    list-style: none;
    padding: 0;
}

.gsb-item {
    padding: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: clamp(0.8125rem, 3.5vw, 0.9375rem);
    line-height: 1.7;
}

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

.gsb-item:hover {
    background: #fafafa;
}

/* 行内布局 */
.gsb-line1 {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.375rem;
    margin-bottom: 0.25rem;
}

.gsb-line2 {
    padding-left: 0;
    margin-top: 0.25rem;
}

.gsb-qs {
    color: #333;
    white-space: nowrap;
}

.gsb-type {
    color: #666;
    white-space: nowrap;
}

.gsb-nr {
    color: #0066cc;
    word-break: break-all;
}

.gsb-result {
    white-space: nowrap;
    margin-left: auto;
}

.gsb-result.win {
    color: #28a745;
}

.gsb-result.lose {
    color: #999;
}

.gsb-result.pending {
    color: #ff9500;
}

/* 底部信息 */
.gsb-footer {
    background: #333;
    padding: 1rem;
    margin: 0.5rem;
    border-radius: 4px;
    text-align: center;
}

.gsb-footer-link {
    color: #ffd700;
    font-weight: 500;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.gsb-footer-text {
    color: #ccc;
    font-size: 0.75rem;
    line-height: 1.5;
}

/* 加载提示 */
.gsb-loading {
    text-align: center;
    padding: 2rem;
    color: #999;
}

/* 中奖号码高亮 - 更柔和 */
.highlight-win {
    background: #fff3cd;
    color: #e60012;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: bold;
    box-shadow: 0 1px 3px rgba(230, 0, 18, 0.3);
}

.gsb-bottom-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px;
    width: 100%;
    font-size: clamp(0.9375rem, 3.5vw, 1rem);
    text-decoration: none;
    font-weight: 500;
    background: #e60012;
    color: #fff;
    transition: all 0.2s;
    box-sizing: border-box;
    line-height: 1.5;
}

.gsb-bottom-btn:hover {
    background: #c4000d;
}
