        .section.trailer {
            background: var(--primary-bg);
            overflow: hidden;
        }

        .section.trailer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
        }

        .section.trailer::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 40% at 50% 0%, rgba(47, 111, 115, 0.12) 0%, transparent 70%),
                radial-gradient(ellipse 50% 30% at 80% 100%, rgba(232, 93, 42, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .trailer .section-line {
            background: linear-gradient(90deg, transparent, var(--accent-gold), var(--accent-olive), var(--accent-gold), transparent);
            box-shadow: 0 0 18px rgba(232, 93, 42, 0.5);
        }

        .trailer-content {
            position: relative;
            z-index: 1;
            max-width: 960px;
            margin: 0 auto;
            padding: 0 clamp(1rem, 4vw, 2rem);
        }

        .trailer-tagline {
            text-align: center;
            color: var(--text-secondary);
            font-size: clamp(1rem, 2vw, 1.15rem);
            line-height: 1.7;
            max-width: 640px;
            margin: -2rem auto clamp(2rem, 5vw, 3rem);
        }

        .trailer-player-wrap {
            position: relative;
            border-radius: 16px;
            padding: 3px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-olive), var(--accent-gold));
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.55),
                0 0 40px rgba(232, 93, 42, 0.15),
                0 0 80px rgba(47, 111, 115, 0.1);
            transition: box-shadow 0.5s ease, transform 0.5s ease;
        }

        .trailer-player-wrap:hover {
            box-shadow:
                0 25px 70px rgba(0, 0, 0, 0.65),
                0 0 50px rgba(232, 93, 42, 0.25),
                0 0 100px rgba(47, 111, 115, 0.15);
            transform: translateY(-4px);
        }

        .trailer-player-inner {
            position: relative;
            border-radius: 14px;
            overflow: hidden;
            background: #000;
            aspect-ratio: 16 / 9;
        }

        .trailer-video {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            background: #000;
        }

        .trailer-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(
                180deg,
                rgba(11, 28, 34, 0.35) 0%,
                rgba(11, 28, 34, 0.55) 50%,
                rgba(11, 28, 34, 0.75) 100%
            );
            cursor: pointer;
            transition: opacity 0.4s ease, visibility 0.4s ease;
            z-index: 2;
        }

        .trailer-overlay.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .trailer-play-btn {
            width: clamp(72px, 12vw, 96px);
            height: clamp(72px, 12vw, 96px);
            border-radius: 50%;
            border: 3px solid rgba(255, 255, 255, 0.85);
            background: linear-gradient(135deg, var(--accent-gold), var(--highlight-gold));
            color: #fff;
            font-size: clamp(1.6rem, 4vw, 2rem);
            display: flex;
            align-items: center;
            justify-content: center;
            padding-left: 6px;
            box-shadow:
                0 8px 30px rgba(232, 93, 42, 0.5),
                0 0 0 12px rgba(232, 93, 42, 0.12),
                0 0 0 24px rgba(47, 111, 115, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: trailer-pulse 2.5s ease-in-out infinite;
        }

        .trailer-overlay:hover .trailer-play-btn {
            transform: scale(1.08);
            box-shadow:
                0 12px 40px rgba(232, 93, 42, 0.6),
                0 0 0 14px rgba(232, 93, 42, 0.15),
                0 0 0 28px rgba(47, 111, 115, 0.1);
        }

        @keyframes trailer-pulse {
            0%, 100% { box-shadow: 0 8px 30px rgba(232, 93, 42, 0.5), 0 0 0 12px rgba(232, 93, 42, 0.12), 0 0 0 24px rgba(47, 111, 115, 0.08); }
            50% { box-shadow: 0 8px 30px rgba(232, 93, 42, 0.65), 0 0 0 16px rgba(232, 93, 42, 0.18), 0 0 0 32px rgba(47, 111, 115, 0.12); }
        }

        .trailer-play-label {
            margin-top: 1.25rem;
            color: var(--text-primary);
            font-size: clamp(0.85rem, 2vw, 1rem);
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
        }

        .trailer-corner {
            position: absolute;
            width: 28px;
            height: 28px;
            border-color: rgba(232, 93, 42, 0.6);
            border-style: solid;
            z-index: 3;
            pointer-events: none;
        }

        .trailer-corner--tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
        .trailer-corner--tr { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
        .trailer-corner--bl { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }
        .trailer-corner--br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

        .trailer-controls-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-top: clamp(1.25rem, 3vw, 1.75rem);
        }

        .trailer-ctrl-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.65rem 1.25rem;
            border: 1px solid rgba(47, 111, 115, 0.5);
            border-radius: 50px;
            background: rgba(15, 37, 44, 0.85);
            color: var(--text-primary);
            font-family: var(--font-secondary);
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .trailer-ctrl-btn:hover {
            border-color: var(--accent-gold);
            background: rgba(232, 93, 42, 0.15);
            color: var(--heading-color);
            transform: translateY(-2px);
        }

        .trailer-ctrl-btn i {
            color: var(--accent-gold);
        }

        @media (max-width: 768px) {
            .trailer-tagline {
                margin-top: -1rem;
            }

            .trailer-controls-bar {
                flex-wrap: wrap;
            }
        }
