.aniX-wrapper { background: #00000000; color: #fff; font-family: 'Kanit', sans-serif; }
.aniX-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.aniX-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-decoration: none !important;
    color: inherit;
    box-shadow: 0 0 15px rgba(0,255,255,0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.aniX-box:hover {
    transform: scale(1.04);
    box-shadow: 0 0 30px rgba(0,255,255,0.7);
}
.aniX-overlay {
    background: rgba(0,0,0,0.5);
    padding: 20px;
    backdrop-filter: blur(5px);
}
.aniX-title {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}
.aniX-title:hover {
    color: #ffd700;
    text-decoration: underline;
}
.aniX-time {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 5px;
}
.aniX-countdown {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ff7676;
    transition: color 0.4s ease, transform 0.4s ease;
}
.aniX-countdown.near-start {
    animation: aniX-pulse 1s infinite alternate;
    color: #ff3e3e !important;
}
@keyframes aniX-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.1); opacity: 0.7; }
}
.aniX-progress {
    height: 5px;
    background: rgba(255,255,255,0.2);
    margin-top: 10px;
    border-radius: 3px;
    overflow: hidden;
}
.aniX-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #0ff, #0cf);
    transition: width 1s linear;
}