* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #0f0f0f;
    font-family: Arial, sans-serif;
    padding: 10px;
    color: #fff;
}
/* 顶部横幅 */
.banner {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #7b4397, #dc2430);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.banner:hover {
    transform: scale(1.01);
}
.banner-title {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}
.banner-icon {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;

}
.banner-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.banner-line {
    width: 60%;
    height: 6px;
    background-color: #555;
    border-radius: 3px;
}
/* 提示栏 */
.tips-bar {
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #000, #333);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff00;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 25px;
    padding: 0 10px;
    box-shadow: 0 0 8px rgba(0,255,0,0.5);
    animation: flash 2s infinite alternate;
}
@keyframes flash {
    from { box-shadow: 0 0 8px rgba(0,255,0,0.5); }
    to { box-shadow: 0 0 15px rgba(0,255,0,0.8); }
}
/* 链接区块 */
.link-section {
    width: 100%;
}
.link-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 0 2px;
}
.section-title {
    font-size: 19px;
    font-weight: 700;
    color: #ff9900;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.section-count {
    font-size: 13px;
    color: #bbbbbb;
    background: #1f1f1f;
    border: 1px solid #2d2d2d;
    border-radius: 999px;
    padding: 4px 10px;
}
.card-list {
    display: grid;
    gap: 12px;
}
.card {
    width: 100%;
    min-height: 82px;
    background: linear-gradient(180deg, #1d1d1d, #131313);
    border: 1px solid #2a2a2a;
    border-left: 4px solid #ff9900;
    border-radius: 14px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    text-decoration: none;
}
.card:hover {
    transform: translateY(-2px);
    border-color: #ff9900;
    background: linear-gradient(180deg, #252525, #171717);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.48);
}
.card-rank {
    width: 38px;
    font-size: 12px;
    color: #ffb84d;
    font-weight: 700;
}
.card-avatar {
    width: 72px;
    height: 54px;
    border-radius: 8px;
    background-color: #212121;
    margin-right: 10px;
    overflow: hidden;
    flex: 0 0 auto;
    border: 1px solid #323232;
}
.card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.card-main {
    min-width: 0;
    flex: 1;
    padding-right: 8px;
}
.card-title {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #f3f3f3;
}
.card-sub {
    margin-top: 5px;
    font-size: 11px;
    color: #b5b5b5;
    letter-spacing: 0.3px;
}
.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}
.card-hot {
    font-size: 11px;
    color: #ffcd79;
    background: rgba(255, 153, 0, 0.14);
    border: 1px solid rgba(255, 153, 0, 0.35);
    border-radius: 999px;
    padding: 4px 8px;
}
.card-arrow {
    font-size: 24px;
    line-height: 1;
    color: #ff9900;
    transition: transform 0.2s ease;
}
.card:hover .card-arrow {
    transform: translateX(3px);
}
.card-empty {
    background: #1a1a1a;
    border: 1px dashed #3a3a3a;
    color: #bbbbbb;
    border-radius: 12px;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
}