
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {

}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.title h1 {
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(45deg, #00ff88, #00a3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grid {
    width: 1200px;
    margin: 0 auto;
    margin-top: 65px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    width: 380px;
    height: 450px;
    background: linear-gradient(145deg, #1a1a2f, #2d2d44);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 163, 255, 0.2);
}

.live-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.live-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .live-img img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #fff;
    background: rgba(255, 50, 50, 0.9);
    padding: 5px 15px;
    z-index: 100;
    border-radius: 15px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.avatar {
    position: absolute;
    bottom: 10px;
    left: 300px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #00a3ff;
    overflow: hidden;
    z-index: 2;
}

.avatar img{
    width: 50px;
    height: 50px;
}
.info {
    padding: 10px 15px 15px;
    position: relative;
}

.meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.heat {
    color: #ff6464;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.heat::before {
    content: "🔥";
    font-size: 1.2em;
}

.follow-btn {
    background: linear-gradient(127deg, #ff991d 0%, #ff5029 98%);
    border: none;
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.follow-btn:hover {
    transform: scale(1.05);
}

.streamer-id {
    font-weight: 500;
    color: #00ff88;
}

.glow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 163, 255, 0.1), transparent 60%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
}
