/* ── Screenshots / Trailer Section ── */
.section-trailer {
    position: relative;
    padding: 100px 40px;
    background: #0a0e17;
}
.section-trailer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4fc3f7, transparent);
}
.trailer-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.trailer-inner h2 {
    font-size: 2.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 48px;
}
.trailer-video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.trailer-video-wrap.buffering::after {
    content: 'Loading...';
    position: absolute;
    right: 14px;
    bottom: 12px;
    z-index: 3;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: #eaf7ff;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 999px;
    padding: 4px 10px;
}
.trailer-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.trailer-fallback {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 4;
}
.trailer-fallback a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(0,0,0,0.5);
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, transform 0.2s ease;
}
.trailer-fallback a:hover {
    background: rgba(79,195,247,0.22);
    transform: translateY(-1px);
}
