
/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #0f0f1a;
    color: #fff;
}
a{
    text-decoration: none;
    color: #ffffff;
}
/* 霓虹效果边框 */
.neon-border {
    border: 2px solid #4f46e5;
    box-shadow: 0 0 15px #4f46e580;
}

/* Header */
header {
    padding: 1rem 5%;
    background: rgba(15, 15, 26, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    background: linear-gradient(45deg, #4f46e5, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1.5rem;
    transition: 0.3s;
    position: relative;
    transition: all ease-in-out 0.3s;
}

nav a:hover::after {
    transition: all ease-in-out 0.3s;
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4f46e5;
}

/* 轮播图 */
.carousel {
    height: 80px;
    overflow: hidden;
    position: relative;
}

.carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* 主播列表 */
.streamers {
    padding: 1rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.streamer-card {
    background: #1a1a2e;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.streamer-card:hover {
    transform: translateY(-10px);
}

.streamer-cover {
    height: 200px;
    position: relative;
}

.streamer-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.streamer-info {
    padding: 1.5rem;
}

.streamer-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    color: #a1a1aa;
}

/* 关于我们 */
.about {
    padding: 4rem 1%;
    background: #1a1a2e;
    width: 1400px;
    line-height: 40px;
    border-radius: 25px;
    margin: 0 auto;
    font-size: 18px;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
}

footer {
    background: #0a0a12;
    padding: 1rem 5%;
    line-height: 30px;
    text-align: center;
    margin-top: 4rem;
}



    /* 新增创新样式 */
    .streamers {
        width: 1600px;
        margin: 20px auto;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        perspective: 1000px;
    }
    
    .streamer-card {
        background: linear-gradient(145deg, #1a1a2e 0%, #2a2a4a 100%);
        border-radius: 20px;
        overflow: hidden;
        transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform-style: preserve-3d;
        position: relative;
        cursor: pointer;
        box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
    }
    
    .streamer-card:hover {
        transform: rotateY(10deg) translateY(-10px);
    }
    
    .streamer-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, 
            transparent 0%, 
            rgba(79, 70, 229, 0.1) 50%, 
            transparent 100%);
        pointer-events: none;
    }
    
    .streamer-cover {
        height: 440px;
        position: relative;
        overflow: hidden;
    }
    
    .streamer-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }
    
    .streamer-card:hover .streamer-cover img {
        transform: scale(1.1);
    }
    
    .live-badge {
        z-index: 1000;
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: #ef4444;
        padding: 0.3rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        animation: pulse 1.5s infinite;
    }
    
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(235, 30, 30, 0); }
        100% { box-shadow: 0 0 0 0 rgba(234, 12, 12, 0); }
    }
    
    .streamer-info {
        padding: 1.5rem;
        position: relative;
        z-index: 1;
    }
    
    .streamer-stats {
        display: flex;
        justify-content: space-between;
        margin-top: 1rem;
        color: #a1a1aa;
        font-size: 0.9rem;
    }
    
    .stats-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .stats-item i {
        color: #4f46e5;
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
        .streamers {
            grid-template-columns: repeat(2, 1fr);
        }
    }
