
:root {
    --main-color: #f2eadf;
    --accent-color: #4a3f35;
    --highlight: #52cdc9;
}


.zbcontainer {
    max-width: 1200px;
    margin: 50px auto;
}

.live-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.live-card {
    background: white;
    border-radius: 15px;
    padding: 0.8rem;
    width: 360px;
    min-height: 180px;
    box-shadow: 8px 8px 16px rgba(74, 63, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}



.live-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 12px 12px 24px rgba(74, 63, 53, 0.15);
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--main-color);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    float: left;
}

.badge {
    position: absolute;
    top: 640px;
    right: 1050px;
    background: var(--highlight);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
}

.info {
    padding-top: 0.5rem;
}

.title {
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category {
    color: var(--highlight);
    font-size: 0.9em;
    background: rgba(255,107,107,0.1);
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-block;
}

.stats {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--accent-color);
    font-size: 16px;
}

.viewers {
    font-size: 0.9em;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(74,63,53,0.1);
    border-radius: 2px;
    margin-top: 1rem;
}

.progress {
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, var(--highlight), #ff8787);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.tags {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.9);
    padding: 10px;
    transition: all 0.3s ease;
    opacity: 0;
}

.live-card:hover .tags {
    bottom: 0;
    opacity: 1;
}

.tag {
    display: inline-block;
    background: var(--main-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    margin: 2px;
    font-size: 14px;
}

.tag img{
    width: 18px;
}

.avatar1{
    width: 360px;
    height: 250px;
    border-radius: 15px;
}