/* Extracted from JS-emitted style strings in js/events-page.js (CSP hardening). */

/* YouTube thumbnail */
.yt-thumb-wrap {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    width: var(--yt-w, 400px);
    height: var(--yt-h, 225px);
    border-radius: var(--yt-radius, 6px);
    box-shadow: var(--yt-shadow, 0 8px 25px rgba(0, 212, 255, 0.3));
}
.yt-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yt-thumb-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.yt-thumb-circle {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}
.yt-thumb-tri {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 15px;
    border-color: transparent transparent transparent #fff;
    margin-left: 3px;
}
.yt-thumb-iframe { border-radius: inherit; display: block; border: none; }

/* Releases */
.ev-release-img-link { display: block; overflow: hidden; border-radius: 8px; transition: transform 0.3s ease; }
.ev-release-img { width: 100%; height: auto; display: block; transition: transform 0.3s ease; }
.ev-release-caption { padding: 1rem; text-align: center; background: #1a1a2e; border-radius: 0 0 8px 8px; }
.ev-release-title { margin: 0; color: #00d4ff; font-weight: bold; }
.ev-release-desc { margin: 0.5rem 0 0; color: var(--muted-text); font-size: 0.85rem; }
.ev-news-half { width: 50%; }
.ev-cards-grid-250 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 2rem; }
.ev-cards-grid-400 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 2rem; margin-top: 2rem; }

/* Videos */
.ev-video-title-link { color: #00d4ff; font-weight: bold; font-size: 0.9rem; text-decoration: none; }
.ev-video-title-text { color: #00d4ff; font-weight: bold; font-size: 0.9rem; }
.ev-video-card { display: flex; flex-direction: column; gap: 0.5rem; }
.ev-video-card-title { margin: 0; }
.ev-video-card-desc { margin: 0; color: var(--muted-text); font-size: 0.8rem; }
.ev-video-fallback { padding: 1.5rem; background: var(--card-bg); border-radius: 8px; border: 1px solid var(--border-color); }
.ev-video-fallback-link { color: var(--primary-color); font-weight: 600; }
.ev-video-fallback-desc { color: var(--muted-text); margin: 0.5rem 0 0; font-size: 0.85rem; }

/* Hangout */
.ev-hangout-flex { display: flex; gap: 2rem; align-items: flex-start; flex-wrap: wrap; }
.ev-video-section-450 { flex: 1; min-width: 450px; }
.ev-video-section-400 { flex: 1; min-width: 400px; }
.ev-video-container-start { display: flex; justify-content: flex-start; }
.ev-video-preview {
    position: relative;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 50%, #16213e 100%);
    border-radius: 8px;
    overflow: hidden;
    width: 400px;
    height: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
    cursor: pointer;
}
.ev-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(139, 92, 246, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}
.ev-video-logo {
    width: 80px;
    height: 80px;
    opacity: 0.95;
    margin-top: 2rem;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}
.ev-video-brand {
    color: white;
    font-family: cursive;
    font-weight: bold;
    font-size: 1.2rem;
    opacity: 0.95;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}
.ev-video-play-icon {
    font-size: 3rem;
    opacity: 0.9;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transition: transform 0.3s ease;
}
.ev-video-cta {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: #00d4ff;
    font-weight: bold;
    font-size: 0.9rem;
}
