.zcl-lottery-box {
    background: #fff;
    border: 2px solid #ff9800;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.zcl-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.zcl-header h3 {
    margin: 0;
    color: #333;
}
.zcl-badge {
    padding: 4px 10px;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}
.zcl-badge.pending {
    background: #2196F3;
}
.zcl-badge.drawn {
    background: #4caf50;
}
.zcl-slides {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-bottom: 15px;
}
.zcl-slide-item img {
    height: 150px;
    width: auto;
    border-radius: 4px;
}
.zcl-prizes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.zcl-prizes li {
    background: #fff8e1;
    padding: 8px 12px;
    margin-bottom: 5px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
}
.zcl-winners {
    margin-top: 20px;
    border-top: 1px dashed #ccc;
    padding-top: 15px;
}
.zcl-winner-list li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}
.winner-name {
    font-weight: bold;
    color: #333;
}
.zcl-comment-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 5px;
    margin-right: 5px;
}
.zcl-admin-controls {
    margin-top: 20px;
    text-align: right;
}

.zcl-list-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #4caf50;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    z-index: 5;
}
.zcl-list-badge.pending {
    background: #ff9800;
}

.zcl-card {
    overflow: visible;
    width: 100%;
}
.zcl-card .content {
    width: 100%;
    height: 260px;
    transform-style: preserve-3d;
    transition: transform 300ms;
    box-shadow: 0px 0px 10px 1px #000000ee;
    border-radius: 5px;
    position: relative;
}
.zcl-card .front, .zcl-card .back {
    background-color: #151515;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 5px;
    overflow: hidden;
}
.zcl-card .back {
    justify-content: center;
    display: flex;
    align-items: center;
}
.zcl-card .back::before {
    position: absolute;
    content: '';
    display: block;
    width: 160px;
    height: 160%;
    background: linear-gradient(90deg, transparent, #ff9966, #ff9966, #ff9966, #ff9966, transparent);
    animation: zcl-rotation 5000ms infinite linear;
}
.zcl-card .back-content {
    position: absolute;
    width: 99%;
    height: 99%;
    background-color: #151515;
    border-radius: 5px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 12px;
}
.zcl-card:hover .content {
    transform: rotateY(180deg);
}
@keyframes zcl-rotation {
    0% { transform: rotateZ(0deg); }
    100% { transform: rotateZ(360deg); }
}
.zcl-card .front {
    transform: rotateY(180deg);
    color: white;
}
.zcl-card .front .front-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.zcl-card .front-content .badge {
    background-color: #00000055;
    padding: 2px 10px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    width: fit-content;
}
.zcl-card .description {
    box-shadow: 0px 0px 10px 5px #00000088;
    width: 100%;
    padding: 10px;
    background-color: #00000099;
    backdrop-filter: blur(5px);
    border-radius: 5px;
}
.zcl-card .title {
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.zcl-card .title .name {
    flex: 1;
    margin-right: 8px;
}
.zcl-card .card-footer {
    color: #ffffff88;
    margin-top: 5px;
    font-size: 10px;
}
.zcl-card .img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.25;
}
.zcl-card .circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #ffbb66;
    position: relative;
    filter: blur(15px);
    animation: zcl-floating 2600ms infinite linear;
}
.zcl-card #bottom { background-color: #ff8866; left: 50px; top: 0px; width: 150px; height: 150px; animation-delay: -800ms; }
.zcl-card #right { background-color: #ff2233; left: 160px; top: -80px; width: 30px; height: 30px; animation-delay: -1800ms; }
@keyframes zcl-floating { 0% { transform: translateY(0px); } 50% { transform: translateY(10px); } 100% { transform: translateY(0px);} }

.zcl-winner-avatars { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.zcl-winner-avatars .item { width:60px; text-align:center; color:#fff; }
.zcl-winner-avatars .item img { width:40px; height:40px; border-radius:50%; display:block; margin:0 auto 4px; }
