
/* --- Grid & Card Style (Sama seperti Event) --- */
.card-video {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.card-video:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(26, 54, 115, 0.12);
    border-color: rgba(26, 54, 115, 0.1);
}

.video-img-box {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
}

.video-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.card-video:hover .video-img-box img {
    transform: scale(1.1);
    filter: brightness(0.7); /* Menggelapkan gambar agar ikon play menonjol */
}

/* --- Ikon Play di Tengah Thumbnail --- */
.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 35px;
    color: #ff0000;
    background: rgba(255, 255, 255, 0.9);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.card-video:hover .video-play-icon {
    background: #ff0000;
    color: #ffffff;
    transform: translate(-50%, -50%) scale(1.15);
}

/* --- Informasi Video --- */
.video-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.video-name {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 45px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.card-video:hover .video-name {
    color: #1a3673;
}

/* --- Tombol Aksi --- */
.btn-tonton {
    background-color: #1a3673;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    transition: all 0.3s ease;
    border: none;
}

.btn-tonton:hover {
    background-color: #0d204a;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(13, 32, 74, 0.3);
}

/* --- Load More Aesthetic --- */
.btn-aesthetic-load {
    background: transparent;
    color: #1a3673;
    border: 2px solid #1a3673;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    cursor: pointer;
    display: inline-block;
    border-radius: 6px;
}

.btn-aesthetic-load:hover {
    background-color: #1a3673;
    color: #fff;
    box-shadow: 0 10px 20px rgba(26, 54, 115, 0.2);
}

/* --- Animasi Masuk --- */
.video-item {
    animation: fadeInScale 0.5s ease forwards;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* --- Responsif --- */
@media (max-width: 768px) {
    .video-title { font-size: 24px; }
    .video-img-box { height: 200px; }
}