* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global background */
html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Prevent text selection on all elements */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection only on input fields, contact form, and about page */
input, textarea, .contact-form, .contact-form *, .about-section, .about-section * {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Ensure contact form text is readable */
.contact-form {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.contact-form label,
.contact-form p,
.contact-form h1,
.contact-form h2,
.contact-form h3,
.contact-form h4,
.about-section h3,
.about-section p,
.about-section h1,
.about-section h2,
.about-section h4 {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    color: #333 !important;
    text-shadow: none !important;
}

/* Disable drag and drop */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}
video {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.video-container {
    position: relative;
}


/* Typography */
h1, h2, h3 {
	font-family: 'Cinzel', serif;
	letter-spacing: 0.02em;
}

/* Removed duplicate hero-title style */

.stinking-red {
	color: #FF0000;
	text-shadow: 0 3px 6px rgba(255, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.8);
	-webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
}

/* Film credits styling */
.film-credits {
    display: none;
}

.director-credit {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    font-style: italic;
    position: relative;
    background: none;
    padding: 0;
    border: none;
    backdrop-filter: none;
    display: block;
    color: #ffffff;
    animation: fadeInUp 1.5s ease-out 0.6s both;
    transition: all 0.3s ease;
}

.director-credit:hover {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.film-by-text {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.director-link {
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
}

.director-link:hover {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(255,255,255,0.6);
}

.composer-credit {
    font-size: 0.8rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    font-family: 'Cinzel', serif;
    animation: fadeInUp 1.8s ease-out 0.9s both;
    transition: all 0.3s ease;
}

.production-credit {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.1px;
    text-transform: uppercase;
    margin-top: 0.3rem;
    font-family: 'Inter', sans-serif;
}

.berkeley-link {
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.berkeley-link:hover {
    color: #FFA500;
    border-bottom: 1px solid #FFA500;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.6);
}

.composer-link {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.composer-link:hover {
    color: #FFD700;
    border-bottom: 1px solid #FFD700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.6);
}

/* Ensure main element covers full page */
main {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Ensure all sections fill the width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Make sure all sections extend full width */
.hero-section, .video-section, .about-section, .social-section, .comments-section, .contact-section {
    width: 100%;
    margin: 0;
    padding: 3rem 0;
    box-sizing: border-box;
}

/* Tighten spacing for lower sections */
.social-section, .comments-section, .about-section {
    padding: 1rem 0;
}

/* Reduce margins within sections */
.social-section h3,
.comments-section h3,
.about-section h2 {
    margin-bottom: 1rem;
}

.social-section .section-subtitle,
.comments-section .section-subtitle {
    margin-bottom: 1.5rem;
}

/* Tighten social buttons spacing */
.social-buttons {
    gap: 1rem;
    margin-bottom: 0;
}

/* Tighten comments section */
.comment-form {
    margin-bottom: 1.5rem;
}

.comments-list {
    margin-top: 1rem;
}

/* Enhanced section backgrounds for readability */
.video-section, .about-section, .social-section, .comments-section, .contact-section {
    background: transparent;
    backdrop-filter: none;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Enhanced card styling */
.price-card, .comment, .modal-content, .choices .choice-card, .video-help {
    background: transparent;
    color: #eee;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: none;
}

/* Enhanced text contrast */
.comment-text, .choice-info p, .section-subtitle, .description, .director, .comment-time, .nav-links a, .about-text {
    color: #f0f0f0;
}

/* Ensure video controls readable */

/* Enhanced text readability */
/* Removed duplicate hero-title style */

.hero-subtitle-fr {
    display: none;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

/* Buttons pop on darker background */
.purchase-btn, .submit-btn, .choice-btn, .unlock-btn, .start-preview-btn {
    box-shadow: 0 14px 40px rgba(255,140,0,0.4);
    backdrop-filter: blur(10px);
}

/* Enhanced modal styling */
.modal-content {
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Enhanced footer */
footer {
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(15px);
}

/* Header - symmetric corners (top-left matches top-right) */
header {
    background: #0a0a0a;
    backdrop-filter: blur(20px);
    color: #f0f0f0;
    padding: 1rem 20px;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    box-sizing: border-box;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #f0f0f0;
    text-decoration: none;
    margin-left: 0;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ff8c00;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff8c00;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Navigation active state */
.nav-links a.active {
    color: #ff8c00;
    font-weight: 600;
    border-bottom: 2px solid #ff8c00;
}

.nav-links a:hover {
    color: #ff8c00;
    transform: translateY(-2px);
}

/* Hero Section - elegant gradient background */
.hero-section {
    background: #000000;
    color: white;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 8vh;
    display: flex;
    align-items: center;
    border-radius: 0;
}

/* Orange band across the top */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, #ff8c00, #ffa500, #ff8c00);
    z-index: 1;
    border-radius: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem 0;
}

/* Removed duplicate ::before rule */

.hero-title {
    font-size: 2.8rem;
    margin: 0 0 0.5rem 0;
    font-weight: 900;
    color: #000000;
    text-shadow: 0 2px 4px rgba(255,255,255,0.3);
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
    font-family: 'Fonseca Rounded', 'Cinzel', serif;
    position: relative;
    display: block;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.clickable-title {
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    position: relative;
    display: inline-block;
}

.clickable-title:hover {
    transform: scale(1.08);
    text-shadow: 0 4px 12px rgba(255,255,255,0.6);
    color: #ff8c00;
    filter: brightness(1.1);
}

.clickable-title:active {
    transform: scale(0.95);
    transition: all 0.1s ease;
}

.clickable-title:focus {
    outline: 2px solid #ff8c00;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Add a subtle pulse animation on hover */
.clickable-title:hover::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 8px;
    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

.hero-director-credit {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    font-style: italic;
    text-align: center;
    display: block;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

/* Removed underline for orange band design */

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #000000;
    text-shadow: 0 2px 8px rgba(255,255,255,0.5);
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Video Section - Al Jazeera Style */
.video-section {
    padding: 1.5rem 0 4rem;
    background: #000000;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 0;
}

/* Video controls styling */
video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    position: relative;
}

/* Hide controls by default, show on hover */
video::-webkit-media-controls-panel {
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(0,0,0,0.8);
    border-radius: 0 0 8px 8px;
}

video:hover::-webkit-media-controls-panel {
    opacity: 1;
}

/* Show controls on hover */
video:hover {
    cursor: pointer;
}

/* Ensure video controls are always visible when video is playing */
video[controls] {
    outline: none;
}

/* Force video controls to be visible */
video {
    -webkit-media-controls: auto !important;
    -moz-media-controls: auto !important;
    -ms-media-controls: auto !important;
    media-controls: auto !important;
}

/* Additional hover effects for better UX */
video:hover::-webkit-media-controls-play-button,
video:hover::-webkit-media-controls-pause-button {
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    opacity: 1;
}

video:hover::-webkit-media-controls-timeline {
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    opacity: 1;
}

video:hover::-webkit-media-controls-current-time-display,
video:hover::-webkit-media-controls-time-remaining-display {
    color: white;
    font-weight: bold;
    opacity: 1;
}

/* Removed duplicate video control styles */

.video-header {
    text-align: center;
    margin-bottom: 0;
}

/* Two-column EN | FR on landing */
.film-versions-wrapper {
    padding: 3rem 1rem 2rem;
}

.language-picker-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #fff;
    text-align: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.film-versions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.lang-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(6px);
    z-index: 3;
}

.film-version-card {
    position: relative;
    background: linear-gradient(180deg, rgba(20,20,20,0.97) 0%, rgba(10,10,10,0.98) 100%);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    text-align: center;
    padding-bottom: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.film-version-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    animation: none;
}

.film-version-card .choice-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.film-version-card .choice-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 0;
    filter: none;
    backdrop-filter: none;
}

.film-version-card .choice-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none;
    image-rendering: auto;
}

.film-version-card .play-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #fff;
    font-size: 2.5rem;
    pointer-events: none;
}

/* Keep ship image clean: no shade, no white on hover */
.film-version-card .play-overlay:hover,
.film-version-card .choice-thumb:hover .play-overlay {
    background: transparent !important;
}

/* Playhead - SVG triangle (visible on clean image via drop-shadow) */
.film-version-card .playhead-svg {
    width: 72px;
    height: 72px;
    color: rgba(255,255,255,0.95);
    flex-shrink: 0;
    transition: transform 0.2s ease;
    pointer-events: none;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.8));
}

.film-version-card .play-overlay:hover .playhead-svg {
    color: #fff;
    transform: scale(1.15);
}

.film-version-card .play-overlay i {
    display: none;
}

.film-version-meta {
    padding: 1rem 1rem 0.5rem;
}

.film-version-title {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
}

.film-version-credit {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.film-version-cta {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.film-version-card .film-version-pay-btn {
    margin: 0 auto;
}

.purchase-section-unified {
    text-align: center;
    margin: 2rem auto 2.5rem;
    padding: 1.5rem;
    max-width: 480px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.purchase-section-unified .purchase-label {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.95);
}

.purchase-section-unified .purchase-note {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}

@media (max-width: 768px) {
    .film-versions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.featured-video {
    position: relative;
    margin-bottom: 4rem;
    text-align: center;
}

.trailer-playing header,
.trailer-playing .hero-section,
.trailer-playing .film-versions-wrapper,
.trailer-playing .film-identity,
.trailer-playing #purchaseSection,
.trailer-playing .video-grid-section,
.trailer-playing #paywallOverlay,
.trailer-playing #previewTimer,
.trailer-playing #videoLoading,
.trailer-playing footer {
    display: none !important;
}

.trailer-playing .video-section {
    border-top: none;
    padding-top: 0;
    padding-bottom: 0;
}

.trailer-playing .container {
    padding: 0;
    max-width: 100%;
}

.trailer-playing .featured-video {
    margin: 0;
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trailer-playing #trailerVideo {
    width: 100% !important;
    height: 100vh !important;
    max-height: 100vh;
    object-fit: contain;
}

.video-grid-section {
    margin-top: 0;
}

.video-grid-section h3 {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-item {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Play button (regular playhead) on trailer thumbnails - circle with triangle */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.75);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    border: 2px solid rgba(255,255,255,0.3);
    opacity: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
}

.play-button .playhead-svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
    pointer-events: none;
}

.video-item:hover .play-button {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 6px 28px rgba(0,0,0,0.5);
    background: rgba(0,0,0,0.88);
}

@media (max-width: 768px) {
    .play-button {
        width: 64px;
        height: 64px;
    }
    .play-button .playhead-svg {
        width: 28px;
        height: 28px;
        margin-left: 3px;
    }
}

.video-info {
    padding: 0.4rem 0.9rem 0.3rem;
}

.video-info h4 {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.video-info p {
    color: #666;
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 0.1rem;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.free {
    background: #28a745;
    color: white;
}

.badge.paid {
    background: #dc3545;
    color: white;
}

.video-date {
    color: #999;
    font-size: 0.8rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-header h2 {
        font-size: 2rem;
    }
    
    .video-grid-section h3 {
        font-size: 1.5rem;
    }
}

.video-header {
    text-align: center;
    margin-bottom: 0;
}

.main-film-title {
    font-size: 4rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 0.75rem;
    font-family: 'Fonseca Rounded', 'Cinzel', serif;
    letter-spacing: -0.02em;
    text-shadow: 0 8px 32px rgba(0,0,0,0.8);
    line-height: 1.2;
}

.video-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    font-weight: 500;
}

/* Trailer video player */
#trailerVideo {
    width: 100%;
    height: 450px;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 20;
    display: none;
}

/* Video container positioning */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
}



.video-container:hover {
    transform: none;
}

/* Video preview styling */
.video-preview {
    position: relative;
    width: 100%;
    display: block;
    cursor: pointer;
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    text-align: left;
}

.video-preview .choice-thumb.full-frame {
    width: 100%;
    height: 450px;
    border-radius: 18px;
    overflow: hidden;
    margin: 0;
    background: #111;
    position: relative;
}

.video-preview .choice-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

/* Superimposed text styling */
.superimposed-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: left;
}

.superimposed-text h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.superimposed-text p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #ccc;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* Video player styling */
#mainVideo {
    width: 100%;
    height: 450px;
    border-radius: 18px;
    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(15px);
    display: block;
    position: relative;
}

/* Video loading state */
#mainVideo:not([src]) {
    background: linear-gradient(45deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

#mainVideo:not([src])::after {
    content: 'Loading video...';
}

/* Video loading overlay */
.video-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 20;
    border-radius: 18px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top: 4px solid #ff8c00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.video-loading p {
    font-size: 1.1rem;
    margin: 0;
    color: #ccc;
}

/* Test video button */
.test-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff8c00;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    z-index: 30;
    font-size: 1rem;
    font-weight: 600;
}

.test-video-btn:hover {
    background: #5a6fd8;
    transform: translate(-50%, -50%) scale(1.05);
}

/* Manual play button */
.manual-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #28a745;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    z-index: 35;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.manual-play-btn:hover {
    background: #218838;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

/* Video play overlay for autoplay fallback */
#videoPlayOverlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 25;
    font-size: 2.5rem;
    color: #333;
    transition: all 0.3s ease;
}

#videoPlayOverlay:hover {
    background: rgba(255,255,255,1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Play overlay - playhead triangle */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

/* Playhead - SVG triangle inside circle */
.playhead-svg {
    width: 44px;
    height: 44px;
    color: #222;
    flex-shrink: 0;
    margin-left: 6px;
    transition: transform 0.2s ease;
    pointer-events: none;
}

.video-preview .play-overlay .playhead-svg {
    width: 44px;
    height: 44px;
    color: #222;
    margin-left: 6px;
}

.play-overlay:hover {
    background: rgba(255,255,255,1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-overlay:hover .playhead-svg {
    transform: scale(1.05);
}

.play-overlay::after {
    display: none;
}

.play-overlay i {
    display: none;
}

.preview-banner {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1.2rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
}

.preview-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.preview-banner span:last-child {
    background: rgba(255,255,255,0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    backdrop-filter: blur(10px);
}

.preview-overlay.show {
    display: flex;
}



.start-preview-btn {
    background: linear-gradient(135deg, #ff8c00, #e06600);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(255,140,0,0.4);
}

.start-preview-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255,140,0,0.6);
}

.start-preview-btn i {
    font-size: 1.5rem;
}

.preview-info {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.preview-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.preview-info p:last-child {
    margin-bottom: 0;
    opacity: 0.8;
}

.preview-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.preview-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.unlock-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255,107,107,0.4);
}

.unlock-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,107,0.6);
}

.video-info {
    text-align: center;
}

.film-details {
    margin-bottom: 4rem;
}

.film-details h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.director {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    font-weight: 500;
}

.director-name {
    color: #ff8c00;
    font-weight: 700;
}

.description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 400;
}

.film-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.07);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.12);
}

.meta-item i {
    color: #ff8c00;
    font-size: 1.1rem;
}

/* Pricing */
.pricing {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.price-card {
    background: rgba(0,0,0,0.8);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff8c00, #e06600);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    border-color: #ff8c00;
}

.price-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 700;
}

.price-header p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: #ff8c00;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.price-subtitle {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.features li {
    padding: 0.8rem 0;
    color: #eee;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.features i {
    color: #28a745;
    font-size: 1.2rem;
    min-width: 20px;
}

.purchase-btn {
    background: linear-gradient(135deg, #ff8c00, #e06600);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(255,140,0,0.4);
}

.purchase-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,140,0,0.6);
}

.purchase-btn i {
    font-size: 1.1rem;
}

/* Social Sharing */
.social-section {
    background: transparent;
    padding: 1.5rem 0;
    text-align: center;
}

.social-section h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.twitter { background: linear-gradient(135deg, #1da1f2, #0d8bd9); }
.facebook { background: linear-gradient(135deg, #4267b2, #365899); }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.tiktok { background: linear-gradient(135deg, #000, #333); }
.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }

/* Comments Section */
.comments-section {
    background: transparent;
    padding: 2rem 0;
}

.comments-section h3 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    text-align: center;
    color: #fff;
    font-weight: 700;
}

.comment-form {
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

#comment-input {
    width: 100%;
    height: 120px;
    padding: 1.25rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    resize: vertical;
    font-family: inherit;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    background: transparent;
    color: #fff;
}

#comment-input:focus {
    outline: none;
    border-color: #ff8c00;
    background: transparent;
    box-shadow: 0 0 0 3px rgba(255,140,0,0.3);
}

.submit-btn {
    background: linear-gradient(135deg, #ff8c00, #e06600);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 5px 20px rgba(255,140,0,0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,140,0,0.4);
}

.comments-list {
    max-width: 700px;
    margin: 0 auto;
}

.comment {
    background: transparent;
    padding: 1.5rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    border-left: 4px solid #ff8c00;
    transition: all 0.3s ease;
    backdrop-filter: none;
}

.comment:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    align-items: center;
}

.comment-author {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.comment-time {
    color: #ccc;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

.comment-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 25px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    border: 1px solid rgba(0,0,0,0.1);
}

.close {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    transition: color 0.3s ease;
}

.close:hover {
    color: #1a1a1a;
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.modal-header p {
    color: #666;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.5);
    color: #fff;
}

.form-group input:focus {
    outline: none;
    border-color: #ff8c00;
    background: rgba(0,0,0,0.7);
    box-shadow: 0 0 0 3px rgba(255,140,0,0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ff8c00;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 10;
}

.social-links a:hover {
    color: #ff8c00;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .video-info h2 {
        font-size: 2.5rem;
    }
    
    .preview-banner {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .film-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 250px;
        justify-content: center;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .price-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .modal-content {
        padding: 2rem;
        margin: 10% auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .video-section {
        padding: 1.25rem 0 3rem;
    }
    
    .price-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 0.8rem;
    }
    
    .stat {
        padding: 0.8rem 1.2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

.choices {
    margin: 2rem 0 1rem;
    text-align: center;
}

.choices h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.choices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.choice-card {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 18px;
    padding: 1rem 1rem 0.75rem;
    text-align: left;
    position: relative;
    box-shadow: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.choice-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
    border-color: #ff8c00;
    background: transparent;
}

.choice-card.active {
    border-color: #ff8c00;
    box-shadow: none;
    background: transparent;
}

.choice-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.choice-badge.free { background: rgba(40, 167, 69, 0.2); color: #4ade80; border: 1px solid rgba(74, 222, 128, 0.3); }
.choice-badge.paid { background: rgba(255, 193, 7, 0.2); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.3); }

.choice-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.15rem;
    color: #fff;
}

.choice-info p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.choice-btn {
    background: linear-gradient(135deg, #ff8c00, #e06600);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 22px rgba(255,140,0,0.25);
}

.video-preview .choice-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 15;
    background: rgba(255,140,0,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Preview timer — progress bar */
.preview-timer {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 200px;
    height: 8px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    z-index: 30;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.timer-progress-bar {
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	overflow: hidden;
}

.timer-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #28a745, #20c997);
	width: 100%;
	transition: width 1s linear;
	border-radius: 4px;
}

/* Timer progress colors based on time remaining */
.timer-progress-fill.warning {
	background: linear-gradient(90deg, #ffa726, #ff9800);
}

.timer-progress-fill.danger {
	background: linear-gradient(90deg, #ff6b6b, #f44336);
	animation: pulse 1s infinite;
}

/* Pulse animation for low time warning */
@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
	}
}

@media (max-width: 768px) {
    .choices {
        margin-top: 2rem;
    }
}

.hero-subtitle-fr {
    display: none;
}

/* Choice thumbnails */
.choice-thumb {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 0 0.75rem 0;
    aspect-ratio: 16/9;
    background: transparent;
}

.choice-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.choice-thumb { position: relative; }
/* Remove the FA play icon that can render as a square - we use .play-overlay with SVG playhead instead */
.film-version-card .choice-thumb::after,
.video-preview .choice-thumb::after {
    display: none !important;
}
.choice-thumb::after {
    content: '\f04b'; /* fa-play */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.95);
    background: transparent;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    box-shadow: none;
}
.choice-card:hover .choice-thumb::after {
    background: transparent;
}

/* Elevate elegance */
.choice-card {
    backdrop-filter: none;
}

.choice-info h4 {
    font-weight: 700;
}

.film-subtitle-fr {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
}

.video-info .film-details {
    margin-bottom: 2rem;
}

.video-info .director {
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    background: transparent;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: -0.5rem;
}

.contact-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.contact-content {
    max-width: 500px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff8c00;
    min-width: 24px;
}

.contact-item span {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

/* About Section */
.about-section {
    background: transparent;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: -0.5rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255,140,0,0.6);
    padding-bottom: 0.5rem;
}

.about-text {
    color: #e6e6e6;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-text p {
    margin-bottom: 0.5rem;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text sup {
    font-size: 0.8em;
    vertical-align: super;
}

/* Responsive adjustments for About section */
@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .about-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .about-content {
        padding: 0 1rem;
    }
}

/* Specific section backgrounds for readability */
.video-section, .about-section, .social-section, .comments-section, .contact-section {
    background: transparent;
}

/* Hero section should be transparent to show background */
/* Removed conflicting background rule */

/* Paywall overlay that appears after 100 seconds */
.paywall-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	border-radius: 18px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	width: 100%;
	height: 100%;
}

.paywall-content {
	text-align: center;
	color: white;
	max-width: 500px;
	padding: 2rem;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.paywall-icon {
	font-size: 4rem;
	color: #ff6b6b;
	margin-bottom: 1rem;
}

.paywall-overlay h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #fff;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.paywall-subtitle {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: #ccc;
}

.paywall-description {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	color: #aaa;
}

.film-preview-card {
	background: rgba(255, 255, 255, 0.1);
	padding: 1.5rem;
	border-radius: 15px;
	margin-bottom: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.film-preview-card h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: #fff;
}

.film-preview-card p {
	color: #ccc;
	margin-bottom: 1rem;
}

.film-preview-card .price {
	font-size: 2rem;
	font-weight: 700;
	color: #ff8c00;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.paywall-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.purchase-after-preview-btn {
	background: linear-gradient(135deg, #ff8c00, #e07200);
	color: white;
	border: none;
	padding: 15px 30px;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

/* Landing festival badge styling */
.landing-festival-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 15px;
    padding: 20px;
    margin: 20px auto;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFF;
    position: relative;
    overflow: hidden;
    max-width: 500px;
    animation: festival-glow 2s ease-in-out infinite alternate;
}

.landing-festival-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: festival-shine 3s infinite;
}

/* Festival info styling - compact festival poster style */
.festival-info {
    text-align: center;
    margin: 15px auto 25px auto;
    padding: 12px 20px;
    background: transparent;
    position: relative;
    z-index: 10;
    max-width: 400px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}



/* Director link styling */
.director-link {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    cursor: pointer;
}

.director-link:hover {
    color: #FFD700;
    border-bottom: 1px solid #FFD700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.6);
}

/* Bio Modal styling */
.bio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.bio-modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 0;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 2px solid #FFD700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.bio-modal-header {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 1.5rem;
    border-radius: 18px 18px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bio-modal-header h2 {
    color: #000;
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.bio-close-btn {
    background: none;
    border: none;
    color: #000;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.bio-close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.bio-modal-body {
    padding: 2rem;
}

.bio-modal-close-btn {
    display: block;
    margin: 1.5rem auto 0;
    padding: 0.65rem 2.5rem;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.bio-modal-close-btn:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.bio-section {
    margin-bottom: 2rem;
}

.bio-section:last-child {
    margin-bottom: 0;
}

.bio-section h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 0.5rem;
}

.bio-section p {
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Landing festival badge styling */

/* Bunny.net embed container (after payment; token-based, no login) */
.bunny-embed-container {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    margin: 0 auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.bunny-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Full-movie protection: no selection, no copy, no drag (trailers stay normal) */
.featured-video.full-movie-active,
.featured-video.full-movie-active * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.featured-video.full-movie-active #mainVideo,
.featured-video.full-movie-active .bunny-embed-container,
.featured-video.full-movie-active .bunny-embed-container iframe {
    pointer-events: auto; /* keep video/iframe clickable for playback controls */
}

.featured-video.full-movie-active #mainVideo {
    -webkit-user-select: none;
    user-select: none;
}

.paywall-paypal-container {
    margin: 1rem 0;
    min-height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Purchase section on main preview (always visible — PayPal renders here) */
.purchase-preview-actions {
    margin-top: 1.25rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.purchase-label {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}
.paypal-container-visible {
    min-height: 45px;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.paypal-unavailable {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0.5rem 0;
    padding: 0.5rem;
}
.paywall-pay-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0.75rem 0;
}
.scroll-to-pay-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.scroll-to-pay-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}
.purchase-full-film-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #0070BA, #005EA6);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(0, 112, 186, 0.4);
}
.purchase-full-film-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 112, 186, 0.5);
}
.purchase-full-film-btn i {
    font-size: 1rem;
}

/* Payment buttons styling */
.payment-btn {
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 0 5px;
}

.stripe-payment-btn {
    background: linear-gradient(135deg, #6772E5, #5469D4);
    color: white;
}

.stripe-payment-btn:hover {
    background: linear-gradient(135deg, #5469D4, #4A5FD1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 114, 229, 0.4);
}

.paypal-payment-btn {
    background: linear-gradient(135deg, #0070BA, #005EA6);
    color: white;
}

.paypal-payment-btn:hover {
    background: linear-gradient(135deg, #005EA6, #004C8C);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 112, 186, 0.4);
}

.return-from-paywall-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.return-from-paywall-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Return to main preview button */
.return-to-main-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    cursor: pointer;
    z-index: 100;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.02em;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.return-to-main-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.return-to-main-btn i {
    margin-right: 0.5rem;
}

/* Test paywall button */
.test-paywall-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #dc3545;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    z-index: 40;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.test-paywall-btn:hover {
    background: #c82333;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6);
}



/* Manual test paywall button */
.manual-test-paywall-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.manual-test-paywall-btn:hover {
	background: #ff5252;
	transform: scale(1.05);
}


/* Visible landing festival badge styling */
.landing-festival-badge-visible {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 15px;
    padding: 20px;
    margin: 20px auto 30px auto;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFF;
    position: relative;
    overflow: hidden;
    max-width: 500px;
    animation: festival-glow 2s ease-in-out infinite alternate;
}

.landing-festival-badge-visible::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Secure Payment Styling */
.payment-form-secure {
    border: 2px solid #28a745;
    background: rgba(40, 167, 69, 0.05);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.payment-form-secure::before {
    content: '🔒 Secure Payment';
    display: block;
    color: #28a745;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.security-badge {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* Video Watermark */
.video-watermark {
    position: absolute;
    top: 10px;
    right: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: bold;
    pointer-events: none;
    z-index: 1000;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}



/* Security Alert Styling */
.security-alert {
    background: #dc3545;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin: 0.5rem 0;
    font-size: 0.9rem;
    text-align: center;
}



/* Footer link styling */
.footer-section h4 a {
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-section h4 a:hover {
    color: #FFA500;
    border-bottom: 1px solid #FFA500;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.6);
}

/* Contact Form Styling */
.contact-section {
    padding: 4rem 0;
    min-height: 80vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-email {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    display: inline-block;
    backdrop-filter: blur(10px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Composer link styling */
.footer-section a[href*="williamryanfritch.bandcamp.com"] {
    color: #ff8c00 !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-section a[href*="williamryanfritch.bandcamp.com"]:hover {
    color: #ffa500 !important;
    text-shadow: 0 2px 4px rgba(255, 140, 0, 0.5);
    transform: translateY(-1px);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: #333;
}

/* Ensure about section text is readable */
.about-section {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    color: #333 !important;
    background-image: url('Ship.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-section h3,
.about-section p,
.about-section .section-subtitle {
    color: #333 !important;
    text-shadow: none !important;
}

.about-text .tech-specs,
.about-text .tech-specs li,
.about-text .tech-specs-label {
    color: #ff8c00 !important;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 120px;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #333;
    color: #fff;
    padding: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn i {
    font-size: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.info-card i {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.info-card h3 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.info-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .info-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Form Success/Error States */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #dc3545;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #28a745;
}

.fa-spin {
    animation: spin 1s linear infinite;
}

/* ============================================================
   DESIGN OVERHAUL — all fixes applied below
   ============================================================ */

/* FIX 1: pointer-events on img was blocking all click interactions.
   Keep drag-prevention but remove pointer-events:none so
   thumbnail cards and film-version cards are fully clickable. */
img {
    pointer-events: auto;
}
/* video elements keep pointer-events managed by JS / specific rules */

/* FIX 2: Hero — cinematic treatment.
   Taller, film-poster background, dark scrim for readability. */
.hero-section {
    min-height: 55vh !important;
    background-image: url('Ship.jpg') !important;
    background-size: cover !important;
    background-position: center 30% !important;
    background-repeat: no-repeat !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-section::before {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.10) 0%,
        rgba(0,0,0,0.15) 60%,
        rgba(0,0,0,0.30) 100%
    ) !important;
    height: 100% !important;
    border-radius: 0 !important;
}
.hero-content {
    padding: 3rem 1.5rem !important;
}
.hero-title {
    color: #fff !important;
    text-shadow: 0 4px 16px rgba(0,0,0,0.8) !important;
    font-size: 3.8rem !important;
    cursor: default !important;
}
.hero-director-credit {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1.05rem !important;
    letter-spacing: 0.18em !important;
    margin-bottom: 0.75rem !important;
}

/* FIX 3: Hero logline */
.hero-logline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    max-width: 580px;
    margin: 0.5rem auto 1.25rem;
    line-height: 1.65;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

/* FIX 4: Awards badges row */
.awards-row {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}
.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem;
    background: rgba(255, 215, 0, 0.18);
    border: 1px solid rgba(255, 215, 0, 0.55);
    border-radius: 999px;
    color: #FFD700;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}
.award-badge i {
    font-size: 0.78rem;
}

/* FIX 5: Hero CTA row — Watch Preview + Buy buttons */
.hero-cta-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}
.hero-preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    background: #fff;
    color: #111;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.hero-preview-btn svg {
    width: 20px;
    height: 20px;
}
.hero-preview-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.5);
}
.hero-buy-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 2rem;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.65);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hero-buy-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    transform: translateY(-2px);
}

/* FIX 6: Hamburger button — hidden on desktop, shown on mobile */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100;
}
.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #f0f0f0;
    border-radius: 2px;
    transition: all 0.25s ease;
}
.nav-close-btn {
    display: none;
}
.nav-overlay {
    display: none;
}

/* FIX 7: Trailer cards — dark background to match site theme */
.video-item {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 12px !important;
}
.video-info h4 {
    color: #f0f0f0 !important;
}
.video-info p {
    color: rgba(255,255,255,0.6) !important;
}

/* FIX 8: Comment text readable on dark background */
.comment-text {
    color: rgba(255,255,255,0.82) !important;
}

/* FIX 9: Responsive video — use aspect-ratio instead of fixed 450px height */
#mainVideo,
#trailerVideo {
    height: auto !important;
    aspect-ratio: 16 / 9;
}
.video-preview .choice-thumb.full-frame {
    height: auto !important;
    aspect-ratio: 16 / 9;
}

/* FIX 10: Paywall improvements — stronger visual hierarchy */
.paywall-overlay {
    backdrop-filter: blur(4px) !important;
}
.paywall-content {
    background: rgba(5,5,5,0.88) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    max-width: 400px !important;
    padding: 2.25rem 2rem !important;
    border-radius: 20px !important;
}
.paywall-icon {
    font-size: 2.4rem !important;
    margin-bottom: 0.75rem !important;
}
.paywall-title {
    font-size: 1.5rem !important;
    font-family: 'Cinzel', serif;
    color: #fff !important;
    margin-bottom: 0.4rem !important;
}
.paywall-subtitle {
    font-size: 1rem !important;
    color: rgba(255,255,255,0.7) !important;
    margin-bottom: 1.25rem !important;
}
.paywall-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.paywall-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.paywall-price-note {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}
.scroll-to-pay-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.9rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #0070BA, #003087) !important;
    border: none !important;
    border-radius: 12px !important;
    margin-bottom: 0.75rem !important;
    box-shadow: 0 6px 18px rgba(0,80,170,0.4) !important;
}
.scroll-to-pay-btn:hover {
    background: linear-gradient(135deg, #005EA6, #002570) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 22px rgba(0,80,170,0.55) !important;
}
.return-from-paywall-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.65rem 1rem !important;
    font-size: 0.88rem !important;
    border-radius: 12px !important;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: rgba(255,255,255,0.7) !important;
}
.return-from-paywall-btn:hover {
    background: rgba(255,255,255,0.08) !important;
    color: #fff !important;
}

/* FIX 11: Purchase section — cleaner two-column layout */
.purchase-section-unified {
    max-width: 680px !important;
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 16px !important;
    padding: 0 !important;
    overflow: hidden;
}
.purchase-section-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
}
.purchase-details {
    padding: 1.75rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.purchase-label {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 0.4rem !important;
}
.purchase-note {
    font-size: 0.88rem !important;
    color: rgba(255,255,255,0.6) !important;
    margin-bottom: 0.9rem !important;
}
.purchase-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.purchase-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    padding: 0.2rem 0;
}
.purchase-features li i {
    color: #4ade80;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.purchase-action {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 200px;
}
.purchase-price-display {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

/* ============================================================
   MOBILE NAVIGATION (hamburger menu)
   ============================================================ */
@media (max-width: 768px) {
    header {
        position: relative;
    }
    .hamburger-btn {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #0d0d0d;
        border-left: 1px solid rgba(255,255,255,0.1);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 5rem 2rem 2rem;
        z-index: 1050;
        transition: right 0.3s ease;
        display: flex !important; /* override the display:none on mobile */
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        font-size: 1.1rem;
        margin: 0;
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .nav-close-btn {
        display: flex;
        position: absolute;
        top: 1.2rem;
        right: 1.2rem;
        background: none;
        border: none;
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.55);
        z-index: 1040;
    }
    .nav-overlay.open {
        display: block;
    }

    /* Hero responsive — handled by bottom override block */
    .hero-section {
        background-attachment: scroll !important;
    }

    /* Purchase section stacks on mobile */
    .purchase-section-inner {
        grid-template-columns: 1fr;
    }
    .purchase-details {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 1.25rem;
    }
    .purchase-action {
        padding-top: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem !important;
    }
    .award-badge {
        font-size: 0.73rem;
    }
    .paywall-price {
        font-size: 2rem;
    }
}

/* =====================================================
   VISUAL REDESIGN — Bright, Cinematic, Compelling
   ===================================================== */

/* Hero: movie-poster layout — title top center, ship visible, description at bottom */
.hero-section {
    min-height: 88vh !important;
    background-position: center 40% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: space-between !important;
}

/* Overlay: dark at top and bottom, clear in the middle where the ship sits */
.hero-section::before {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.05) 22%,
        rgba(0, 0, 0, 0.00) 45%,
        rgba(0, 0, 0, 0.00) 60%,
        rgba(0, 0, 0, 0.15) 82%,
        rgba(0, 0, 0, 0.30) 100%
    ) !important;
}

/* Top band: award — title — award, all in one row */
.hero-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2.5rem 4vw 0;
    position: relative;
    z-index: 2;
    gap: 1rem;
}

/* Title block — centered, flex: 1 */
.hero-title-block {
    text-align: center;
    flex: 1;
}

/* Thin rule between title and director credit */
.hero-title-block::after {
    content: '';
    display: block;
    width: 56px;
    height: 1px;
    background: rgba(255, 255, 255, 0.40);
    margin: 0.65rem auto 0.5rem;
}

/* Title — professional film-poster treatment */
.hero-title {
    font-family: 'Cinzel', serif !important;
    font-size: clamp(1.8rem, 3vw, 3rem) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    margin: 0 !important;
    line-height: 1.1 !important;
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.95),
        0 8px 32px rgba(0, 0, 0, 0.75) !important;
}

/* Director credit — small caps, spaced, understated */
.hero-director-credit {
    font-family: 'Cinzel', serif !important;
    font-size: 0.78rem !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.68) !important;
    letter-spacing: 0.35em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    margin: 0 !important;
}

/* Bottom band */
.hero-bottom {
    padding: 0 5vw 3rem;
    position: relative;
    z-index: 2;
}

/* Logline shared */
.hero-logline {
    color: rgba(255, 255, 255, 0.93) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    font-size: 0.98rem !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    max-width: none !important;
}
.hero-logline-en {
    text-align: left !important;
}
.hero-logline-fr {
    text-align: right !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-style: italic !important;
}

/* Award badges — film festival laurel style */
.award-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.55rem 0.85rem !important;
    background: rgba(0, 0, 0, 0.55) !important;
    border: 1px solid rgba(255, 210, 0, 0.60) !important;
    border-radius: 6px !important;
    color: #FFD700 !important;
    box-shadow: 0 0 18px rgba(255, 190, 0, 0.18), inset 0 0 10px rgba(255, 200, 0, 0.04) !important;
    backdrop-filter: blur(8px) !important;
}
.award-laurel {
    width: 14px;
    height: 44px;
    color: #FFD700;
    flex-shrink: 0;
    opacity: 0.9;
    filter: drop-shadow(0 0 3px rgba(255,215,0,0.5));
}
.award-badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    text-align: center;
}
.award-badge-title {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255,215,0,0.6);
    line-height: 1.2;
    font-family: 'Cinzel', serif;
}
.award-badge-sub {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 215, 0, 0.75);
    text-transform: uppercase;
    line-height: 1.2;
}

/* CTA row: Watch Trailer left · Purchase right */
.hero-bottom .hero-cta-row {
    justify-content: space-between !important;
    margin-top: 0 !important;
    width: 100% !important;
}

/* "Watch Free Preview" — electric orange */
.hero-preview-btn {
    background: linear-gradient(135deg, #FF4500 0%, #FF8C00 100%) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 8px 30px rgba(255, 69, 0, 0.55) !important;
    font-size: 1.05rem !important;
    padding: 0.95rem 2.25rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em;
}
.hero-preview-btn:hover {
    background: linear-gradient(135deg, #FF5A1A 0%, #FFA020 100%) !important;
    box-shadow: 0 14px 40px rgba(255, 69, 0, 0.70) !important;
    transform: translateY(-3px) scale(1.03) !important;
}

/* "Purchase — $9.99" — brand orange */
.hero-buy-btn {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.55) !important;
    font-size: 1.05rem !important;
    padding: 0.95rem 2.25rem !important;
    font-weight: 700 !important;
}
.hero-buy-btn:hover {
    background: linear-gradient(135deg, #e07000 0%, #e89500 100%) !important;
    box-shadow: 0 14px 40px rgba(255, 140, 0, 0.70) !important;
    transform: translateY(-3px) scale(1.03) !important;
}

/* Video thumbnail cards — dark cards (not white) */
.video-item {
    background: #111 !important;
    border: 1px solid rgba(255, 120, 0, 0.22) !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5) !important;
}
.video-item:hover {
    border-color: rgba(255, 140, 0, 0.55) !important;
    box-shadow: 0 12px 36px rgba(255, 90, 0, 0.22) !important;
}
.video-info h4 {
    color: #fff !important;
}
.video-info p {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Film version cards — warm hover glow */
.film-version-card {
    border: 1px solid rgba(255, 100, 0, 0.22) !important;
    transition: all 0.3s ease !important;
}
.film-version-card:hover {
    border-color: rgba(255, 140, 0, 0.55) !important;
    box-shadow: 0 16px 48px rgba(255, 80, 0, 0.25) !important;
    transform: translateY(-4px) !important;
}

/* Video grid section heading */
.video-grid-section h3 {
    color: #fff !important;
    font-size: 1.4rem !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-left: 4px solid #FF5500;
    padding-left: 0.75rem;
}

/* ── Film identity banner (purchase section + other pages) ── */
.film-identity {
    text-align: center;
    padding: 3.5rem 1rem 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 3rem;
    width: 100%;
}
.film-identity-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero-title a,
.film-identity-title a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}
.hero-title a:hover,
.film-identity-title a:hover {
    opacity: 0.75;
}
.film-identity-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 1px;
    background: rgba(255,255,255,0.35);
    margin: 0.6rem auto 0.5rem;
}
.film-identity-credit {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}
.film-identity-awards {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* ── Purchase section — minimal, centered ── */
.video-section {
    padding: 5rem 0 6rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.purchase-section-unified {
    max-width: 420px !important;
    width: 100% !important;
    margin: 0 auto !important;
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 16px !important;
    box-shadow: none !important;
    padding: 2.5rem 2rem !important;
}
.purchase-section-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    grid-template-columns: unset !important;
}
.purchase-details {
    text-align: center;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    padding: 0 0 1.5rem !important;
    width: 100%;
}
.purchase-label {
    font-family: 'Cinzel', serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #fff !important;
    margin-bottom: 0.6rem !important;
}
.purchase-note {
    font-size: 0.82rem !important;
    color: rgba(255,255,255,0.50) !important;
    line-height: 1.5 !important;
    margin-bottom: 1.1rem !important;
}
.purchase-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.35rem !important;
}
.purchase-features li {
    font-size: 0.82rem !important;
    color: rgba(255,255,255,0.60) !important;
    justify-content: center !important;
}
.purchase-features li i {
    color: #ff8c00 !important;
}
.purchase-action {
    padding: 1.5rem 0 0 !important;
    width: 100%;
    align-items: center !important;
    min-width: unset !important;
    gap: 1rem !important;
}
.purchase-price-display {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    text-shadow: none !important;
    letter-spacing: -0.02em;
    line-height: 1;
}
.purchase-full-film-btn {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    padding: 0.85rem 2rem !important;
    box-shadow: 0 6px 22px rgba(255, 140, 0, 0.45) !important;
    width: 100% !important;
    justify-content: center !important;
}
.purchase-full-film-btn:hover {
    background: linear-gradient(135deg, #e07000 0%, #e89500 100%) !important;
    box-shadow: 0 10px 32px rgba(255, 140, 0, 0.60) !important;
    transform: translateY(-2px) !important;
}

/* ── Trailer Picker Overlay ── */
.trailer-picker-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.trailer-picker-close {
    position: fixed;
    top: 1.25rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    color: rgba(255,255,255,0.75);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trailer-picker-close:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
}
.trailer-picker-inner {
    text-align: center;
    width: 100%;
    max-width: 1100px;
}
.trailer-picker-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}
.trailer-picker-credit {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
    margin-bottom: 1.8rem;
}
.trailer-picker-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}
.trailer-picker-card {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.10);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    background: #0a0a0a;
}
.trailer-picker-card:hover {
    border-color: rgba(255, 85, 0, 0.7);
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(255, 85, 0, 0.28);
}
.trailer-picker-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.trailer-picker-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    pointer-events: none;
}
.trailer-picker-card:hover .trailer-picker-thumb img {
    transform: scale(1.05);
}
/* Subtle dark gradient over thumbnail for play button contrast */
.trailer-picker-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.45) 100%);
    pointer-events: none;
}
/* Play button — cinematic circle */
.trailer-picker-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.trailer-picker-play svg {
    width: 0;
    height: 0;
}
/* Replace SVG with a proper styled circle button */
.trailer-picker-play::before {
    content: '';
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    position: absolute;
}
.trailer-picker-play::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 26px;
    border-color: transparent transparent transparent rgba(255,255,255,0.95);
    margin-left: 7px;
    position: absolute;
    transition: border-color 0.25s, transform 0.25s;
}
.trailer-picker-card:hover .trailer-picker-play::before {
    background: rgba(255, 85, 0, 0.75);
    border-color: #FF5500;
    transform: scale(1.12);
    box-shadow: 0 0 40px rgba(255, 85, 0, 0.55), 0 4px 24px rgba(0,0,0,0.5);
}
.trailer-picker-card:hover .trailer-picker-play::after {
    border-color: transparent transparent transparent #fff;
    transform: scale(1.12);
}
/* Info bar below thumbnail */
.trailer-picker-info {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.trailer-picker-lang {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #FF8C00;
    background: rgba(255,140,0,0.12);
    border: 1px solid rgba(255,140,0,0.45);
    border-radius: 4px;
    padding: 0.25rem 0.6rem;
    text-transform: uppercase;
    flex-shrink: 0;
}
.trailer-picker-label {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
}
@media (max-width: 640px) {
    .trailer-picker-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .trailer-picker-title {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    .trailer-picker-play::before {
        width: 64px;
        height: 64px;
    }
    .trailer-picker-play::after {
        border-width: 11px 0 11px 20px;
        margin-left: 5px;
    }
}

/* Footer — subtle warm bottom edge */
footer {
    border-top: 1px solid rgba(255, 90, 0, 0.18) !important;
}

/* Paywall CTA — brand orange */
.scroll-to-pay-btn {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 26px rgba(255, 140, 0, 0.50) !important;
    font-size: 1rem !important;
    padding: 0.9rem 2.1rem !important;
}
.scroll-to-pay-btn:hover {
    background: linear-gradient(135deg, #e07000 0%, #e89500 100%) !important;
    box-shadow: 0 12px 34px rgba(255, 140, 0, 0.65) !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 90vw !important;
    }
    .hero-top-row {
        padding: 1.5rem 1.25rem 0 !important;
        gap: 0.5rem !important;
    }
    .hero-title {
        font-size: 1.5rem !important;
    }
    .hero-director-credit {
        font-size: 0.78rem !important;
    }
    .hero-bottom {
        padding: 0 1.25rem 2rem !important;
    }
    .hero-bottom-split {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .hero-logline-en,
    .hero-logline-fr {
        text-align: center !important;
    }
    .hero-bottom-split .hero-cta-row {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .hero-bottom-split .hero-preview-btn,
    .hero-bottom-split .hero-buy-btn {
        width: auto !important;
    }
}
@media (max-width: 480px) {
    .hero-section {
        min-height: 105vw !important;
    }
    .hero-top-row {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .hero-title-block {
        order: -1;
        width: 100%;
    }
    .hero-title {
        font-size: 1.4rem !important;
    }
    .award-badge {
        font-size: 0.7rem !important;
    }
}
/* ============================================================
   MOBILE OVERHAUL — phones up to 768px
   ============================================================ */

/* --- General page padding --- */
@media (max-width: 768px) {
    .container {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
}

/* --- Hero: tighter, cleaner on phone --- */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto !important;
        padding-bottom: 2.5rem !important;
    }
    .hero-top-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.6rem !important;
        padding: 1.25rem 1.25rem 0 !important;
    }
    .hero-title-block {
        order: 0 !important;
        width: 100% !important;
        text-align: center !important;
    }
    .hero-title {
        font-size: clamp(1.5rem, 5.5vw, 2.2rem) !important;
        margin-bottom: 0.4rem !important;
    }
    .award-badge {
        font-size: 0.65rem !important;
        gap: 0.4rem !important;
    }
    .award-badge-title {
        font-size: 0.65rem !important;
    }
    .award-badge-sub {
        font-size: 0.55rem !important;
    }
    .hero-bottom {
        padding: 1rem 1.25rem 1.5rem !important;
    }
    .hero-cta-row {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.6rem !important;
        flex-wrap: wrap !important;
    }
    .hero-preview-btn,
    .hero-buy-btn {
        width: auto !important;
        font-size: 0.78rem !important;
        padding: 0.6rem 1.1rem !important;
        border-radius: 50px !important;
        letter-spacing: 0.02em !important;
    }
    .hero-preview-btn svg {
        width: 14px !important;
        height: 14px !important;
    }
}

/* --- Film identity (title + awards on inner pages) --- */
@media (max-width: 768px) {
    .film-identity {
        padding: 2rem 1.25rem 1.5rem !important;
    }
    .film-identity-title {
        font-size: clamp(1.4rem, 6vw, 2rem) !important;
    }
    .film-identity-awards {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 1rem !important;
    }
}

/* --- About section text --- */
@media (max-width: 768px) {
    .about-section {
        padding: 2rem 0 !important;
    }
    .about-section h3 {
        font-size: 1.4rem !important;
        color: #fff !important;
    }
    .about-text {
        font-size: 1rem !important;
        line-height: 1.75 !important;
    }
}

/* --- Language picker (EN/FR cards after payment) --- */
@media (max-width: 768px) {
    .film-versions-wrapper {
        padding: 2rem 1.25rem 1.5rem !important;
    }
    .language-picker-heading {
        font-size: 1rem !important;
        margin-bottom: 1.25rem !important;
    }
    .film-versions-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .film-version-card {
        border-radius: 12px !important;
    }
    .film-version-cta {
        font-size: 0.95rem !important;
        padding: 0.85rem !important;
    }
}

/* --- Purchase section --- */
@media (max-width: 768px) {
    .purchase-section-unified {
        margin: 0 0.75rem !important;
        border-radius: 16px !important;
    }
    .purchase-section-inner {
        grid-template-columns: 1fr !important;
        padding: 1.5rem !important;
        gap: 1.25rem !important;
    }
    .purchase-action {
        min-width: unset !important;
        width: 100% !important;
    }
    .purchase-price-display {
        font-size: 2rem !important;
        text-align: center !important;
    }
    .purchase-features li {
        font-size: 0.9rem !important;
    }
    #paypal-button-container {
        width: 100% !important;
    }
}

/* --- Paywall overlay --- */
@media (max-width: 768px) {
    .paywall-content {
        padding: 2rem 1.25rem !important;
        border-radius: 16px !important;
    }
    .paywall-title {
        font-size: 1.2rem !important;
    }
    .paywall-subtitle {
        font-size: 0.9rem !important;
    }
    .scroll-to-pay-btn {
        font-size: 0.95rem !important;
        padding: 0.9rem 1.5rem !important;
    }
}

/* --- Trailer video (full-screen on mobile) --- */
@media (max-width: 768px) {
    .trailer-playing .featured-video {
        min-height: 100svh !important;
    }
    .trailer-playing #trailerVideo {
        height: 100svh !important;
    }
    .return-to-main-btn {
        top: 14px !important;
        left: 14px !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
    }
}

/* --- Footer --- */
@media (max-width: 768px) {
    footer {
        padding: 3rem 0 1.5rem !important;
    }
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1.5rem !important;
    }
    .footer-section {
        text-align: center !important;
    }
    .footer-section h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }
    .footer-section p {
        font-size: 0.9rem !important;
    }
    .social-links {
        justify-content: center !important;
    }
    .social-links a {
        font-size: 1.8rem !important;
        padding: 0.5rem !important;
        min-width: 48px !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .footer-bottom p {
        font-size: 0.8rem !important;
    }
}

/* --- Trailer picker overlay --- */
@media (max-width: 768px) {
    .trailer-picker-inner {
        padding: 2rem 1.25rem !important;
    }
    .trailer-picker-title {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
    .trailer-picker-card {
        border-radius: 10px !important;
        overflow: hidden !important;
    }
}

/* --- Navigation hamburger --- */
@media (max-width: 768px) {
    .hamburger-btn {
        width: 44px !important;
        height: 44px !important;
    }
    .nav-links a {
        font-size: 1.1rem !important;
        padding: 0.85rem 0 !important;
    }
}

/* --- Contact page --- */
@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 0 !important;
    }
    .contact-header h1 {
        font-size: 2rem !important;
    }
    .contact-form {
        padding: 1.5rem 1.25rem !important;
        border-radius: 12px !important;
    }
}

/* ============================================================
   EXTRA SMALL PHONES — 480px and below
   ============================================================ */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.3rem, 6vw, 1.7rem) !important;
    }
    /* Hide award badges on very small screens to reduce clutter */
    .hero-top-row .award-badge {
        display: none !important;
    }
    .hero-director-credit {
        font-size: 0.8rem !important;
    }
    .film-identity-awards {
        gap: 0.75rem !important;
    }
    .film-identity-awards .award-badge {
        font-size: 0.6rem !important;
    }
    .purchase-section-inner {
        padding: 1.25rem !important;
    }
    .footer-content {
        gap: 1.5rem !important;
    }
    .return-to-main-btn {
        font-size: 0.8rem !important;
        padding: 0.5rem 0.85rem !important;
    }
    .trailer-picker-thumb {
        aspect-ratio: 16/9 !important;
    }
}
