/* Video page specific styles */

.video-header {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--bg-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-header h1 {
    font-size: 3rem;
    color: var(--primary-pink);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px;
}

.video-item {
    background-color: rgba(22, 33, 62, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    text-shadow: 0 0 15px black;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.video-thumbnail:hover .play-button {
    opacity: 1;
}

.video-title {
    padding: 15px;
    font-weight: bold;
}
