<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.latest-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 600px;
    padding: 20px;
}

.content-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 4px 24px rgba(0, 157, 255, 0.2);
    animation: slideIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.content-card h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    margin-bottom: 20px;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(114, 137, 218, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 24px;
}

.video-thumbnail:hover .play-button {
    background: #7289da;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
    color: white;
}

.video-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.video-stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    color: #7289da;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 28px rgba(0, 157, 255, 0.3);
    transition: all 0.3s ease;
}


.content-card {
    transition: all 0.3s ease;
}</pre></body></html>