/* =============================================
   Quick Videos Page Styles
   ============================================= */

/* Hero */
.videos-hero {
    padding: 10rem 0 6rem;
    position: relative;
    text-align: center;
}

.videos-hero .deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(29, 161, 242, 0.08);
    pointer-events: none;
}

.videos-hero .deco-circle:nth-child(1) { width: 500px; height: 500px; top: -80px; left: -120px; }
.videos-hero .deco-circle:nth-child(2) { width: 350px; height: 350px; top: 60px; right: -80px; }
.videos-hero .deco-circle:nth-child(3) { width: 200px; height: 200px; bottom: 0; left: 50%; transform: translateX(-50%); }

.videos-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.15;
    max-width: 720px;
    margin: 0 auto 1.25rem;
}

.videos-hero h1 span { color: var(--accent-cyan); }

.videos-hero .hero-subtitle {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.videos-tag-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.videos-tag {
    background: rgba(29, 161, 242, 0.08);
    border: 1px solid rgba(29, 161, 242, 0.2);
    color: var(--accent-cyan-light);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Video grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Video card — live */
.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(29, 161, 242, 0.15);
    border-color: var(--border-hover);
}

/* Thumbnail with play overlay */
.video-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-darker);
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(0.85);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.video-play-btn .play-circle {
    width: 64px;
    height: 64px;
    background: rgba(29, 161, 242, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.video-card:hover .play-circle {
    transform: scale(1.12);
    background: var(--accent-cyan);
}

.video-duration {
    position: absolute;
    bottom: 0.6rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* Video card body */
.video-body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.video-body h3 {
    font-family: var(--font-heading);
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.75rem;
    flex: 1;
}

.video-watch-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-cyan);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.video-watch-link:hover { gap: 0.65rem; }

/* Coming soon card */
.video-card.coming-soon {
    opacity: 0.6;
    cursor: default;
}

.video-card.coming-soon:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border);
}

.coming-soon-thumb {
    aspect-ratio: 16 / 9;
    background: var(--bg-darker);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-dim);
}

.coming-soon-thumb i {
    font-size: 2rem;
    color: rgba(29, 161, 242, 0.3);
}

.coming-soon-thumb span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
    .videos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .videos-hero { padding: 8rem 0 4rem; }
    .videos-grid { grid-template-columns: 1fr; }
}
