/*
    Wazza TV Landing Page - Complete Layout with Interactive Content Components
    - Mobile & Tablet Design Optimizations & Modal Success States & Video Background
    - Reduced hero title font size on mobile/tablet (2rem vs 2.5rem)
    - Hidden line breaks in hero description on mobile/tablet (keeps desktop readability)  
    - Added extra padding top/bottom to hero container on mobile/tablet (120px vs 80px)
    - Added in-modal success states with green checkmark icons and better UX
    - High-quality YouTube video (two-column layout on desktop, component below CTAs on mobile/tablet)
    - Implemented YouTube JavaScript API for seamless looping with minimal tracking
    - Improved mobile/tablet modal positioning and spacing to prevent cropping
    - Added video overlay protection and Wazza attribution links
    - Tablet devices now use mobile layout for consistent experience
    - Added 4 content sections: About, For Public, For Filmmakers, For Investors
    - Added CTA section and footer with consistent design language
    - Responsive grid layouts and typography for all content sections
    - Added hero bottom divider for visual consistency
    - Interactive HTML components demonstrating platform features with hover effects
    - Comments component: Social media-style feedback system
    - Revenue component: Visual revenue distribution flow
    - Payment component: Multi-method payment interface
    - Responsive component layouts that stack on mobile devices
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0C0C0E;
    color: #ffffff;
    overflow-x: hidden;
}

/* Full-screen preloader */
.fullscreen-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0C0C0E;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.fullscreen-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Global Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0C0C0E;
}

::-webkit-scrollbar-thumb {
    background: #2F2F2F;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #4F4F4F;
}

/* Global Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #2F2F2F #0C0C0E;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(12, 12, 14, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #2F2F2F;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 18px;
    font-weight: 500;
    color: white;
}

.beta-label {
    padding: 4px 8px;
    background-color: #2F2F2F;
    color: #AAAAAA;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    outline: none;
    gap: 8px;
}

.btn:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Desktop: Show both icons and text for consistency - 8px gap, icons on left */
.btn-text {
    display: inline;
}

.btn-icon {
    display: flex;
    width: 18px;
    height: 18px;
}

.btn-primary {
    background-color: white;
    color: black;
    padding: 12px 24px;
    font-size: 14px;
}

.btn-primary:hover {
    background-color: #f3f4f6;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid #2F2F2F;
    padding: 12px 24px;
    font-size: 14px;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.78vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* Video loading placeholder (removed - using fullscreen preloader instead) */

/* Retro Preloader */
.preloader {
    text-align: center;
    font-family: 'Courier New', monospace;
}

.preloader-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.loading-label {
    color: white;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
}

.loading-brackets {
    display: flex;
    gap: 4px;
}

.bracket {
    color: #AAAAAA;
    font-size: 24px;
    transition: color 0.3s ease;
    animation: loadingPulse 1.5s infinite;
}

.bracket[data-index="0"] { animation-delay: 0.0s; }
.bracket[data-index="1"] { animation-delay: 0.3s; }
.bracket[data-index="2"] { animation-delay: 0.6s; }
.bracket[data-index="3"] { animation-delay: 0.9s; }
.bracket[data-index="4"] { animation-delay: 1.2s; }

@keyframes loadingPulse {
    0%, 60%, 100% {
        color: #2F2F2F;
    }
    30% {
        color: white;
    }
}

.preloader-subtitle {
    color: #666;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: subtitleBlink 1s infinite;
}

@keyframes subtitleBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

/* Show video when loaded */
.video-loaded iframe {
    opacity: 1 !important;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(12, 12, 14, 1) 0%, rgba(12, 12, 14, 0.6) 50%, rgba(12, 12, 14, 0) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    padding-top: 80px;
    width: 100%;
}

/* Hero Divider */
.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #2F2F2F;
    z-index: 4;
}

.hero-content {
    max-width: 640px;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #2F2F2F;
    border-radius: 9999px;
    margin-bottom: 32px;
}

.coming-soon-badge span {
    color: #AAAAAA;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 500;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    margin-bottom: 32px;
}

.hero-description p {
    font-size: 18px;
    color: #AAAAAA;
    line-height: 1.6;
    margin-bottom: 16px;
}

.hero-description p:last-child {
    margin-bottom: 0;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Responsive Design */
@media (min-width: 1024px) {
    .hero-cta {
        flex-direction: row;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .container {
        padding: 0 24px;
    }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Desktop Video Component */
.desktop-video-component {
    display: none;
}

/* Mobile Video Component */
.mobile-video-component {
    display: none;
    margin-top: 40px;
}

.mobile-only {
    display: none;
}

/* Desktop Specific */
@media (min-width: 1024px) {
    .hero-content-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 64px;
    }
    
    .hero-content {
        flex: 1;
        max-width: none;
    }
    
    .desktop-video-component {
        display: block;
        flex: 1;
        max-width: 500px;
    }
    
    /* Hide background video on desktop when using column layout */
    .hero-background iframe {
        display: none;
    }
    
    .hero-background {
        background-color: #0C0C0E;
    }
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2F2F2F;
}

/* YouTube Player Styling */
.youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

/* Video Attribution */
.video-attribution {
    margin-top: 12px;
    text-align: center;
}

.video-attribution a {
    color: #666;
    font-size: 12px;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.video-attribution a:hover {
    color: #AAAAAA;
}

/* Mobile & Tablet Responsive */
@media (max-width: 1023px) {
    .header .container {
        padding: 12px 16px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .header-right {
        gap: 8px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    /* Mobile: Header buttons - icons only, Hero buttons - icons + text */
    .header .btn .btn-text {
        display: none;
    }
    
    .header .btn .btn-icon {
        display: flex;
        width: 20px;
        height: 20px;
    }
    
    .hero .btn .btn-text {
        display: inline;
    }
    
    .hero .btn .btn-icon {
        display: flex;
        width: 18px;
        height: 18px;
    }
    
    .btn {
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
        display: flex;
        padding: 12px;
    }
    
    .btn-large {
        min-width: 48px;
        min-height: 48px;
        padding: 14px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description p {
        font-size: 16px;
    }
    
    /* Hide line breaks in hero description on mobile */
    .hero-description br {
        display: none;
    }
    
    /* Mobile: Show logomark + logotype for brand clarity, hide beta label */
    .beta-label {
        display: none;
    }
    
    .logo-text {
        display: inline;
    }
    
    .hero {
        min-height: 100vh;
        height: auto;
    }
    
    /* Mobile: Add more padding top and bottom to hero container */
    .hero .container {
        padding-top: 120px;
        padding-bottom: 50px;
    }
    
     /* Mobile: Hide background video and show video component */
     .hero-background iframe {
         display: none;
     }
     
     .hero-background {
         background-color: #0C0C0E;
     }
     
     .mobile-only {
         display: block;
     }
}

/* Modal Styles */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #2F2F2F;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Custom Scrollbar for Modal - Respects rounded corners */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 6px;
    margin: 8px 4px 8px 0;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #2F2F2F;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    border: 1px solid transparent;
    background-clip: content-box;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #4F4F4F;
    background-clip: content-box;
}

/* Firefox Scrollbar */
.modal-content {
    scrollbar-width: thin;
    scrollbar-color: #2F2F2F transparent;
    padding-right: 4px;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 0 24px;
    margin-bottom: 24px;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #AAAAAA;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.modal-form {
    padding: 0 24px 24px 24px;
}

.form-section {
    margin-bottom: 32px;
}

.form-label {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    color: #AAAAAA;
    margin-bottom: 16px;
    margin-top: 0;
}

.choice-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.choice-btn {
    background-color: #2F2F2F;
    color: white;
    border: 1px solid #2F2F2F;
    border-radius: 24px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.choice-btn:hover {
    background-color: #3F3F3F;
    border-color: #4F4F4F;
}

.choice-btn.selected {
    background-color: white;
    color: black;
    border-color: white;
}

.form-input {
    width: 100%;
    background-color: #2F2F2F;
    border: 1px solid #2F2F2F;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 16px;
    color: white;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-input::placeholder {
    color: #666;
}

.form-input:focus {
    outline: none;
    border-color: #4F4F4F;
    background-color: #3F3F3F;
}

.modal-submit {
    width: 100%;
    margin-bottom: 16px;
}

.form-footer {
    font-size: 12px;
    color: #AAAAAA;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

.link {
    color: white;
    text-decoration: underline;
}

.link:hover {
    color: #AAAAAA;
}

/* Modal Responsive */
@media (max-width: 1023px) {
    .modal {
        padding: 20px 16px;
        align-items: flex-start;
        padding-top: 40px;
    }
    
    .modal-content {
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 20px 20px 0 20px;
        margin-bottom: 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-form {
        padding: 0 20px 20px 20px;
    }
    
    .form-section {
        margin-bottom: 24px;
    }
    
    .form-label {
        font-size: 16px;
    }
    
    .choice-buttons {
        gap: 8px;
    }
    
    .choice-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
}

/* Modal Success State */
.modal-success {
    padding: 0 24px 24px 24px;
    text-align: center;
}

.success-icon {
    margin: 20px 0 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-icon svg {
    color: #22c55e;
    width: 64px;
    height: 64px;
}

.success-message {
    font-size: 18px;
    color: #AAAAAA;
    line-height: 1.6;
    margin-bottom: 32px;
    margin-top: 0;
}

.modal-success .btn {
    width: 100%;
}

/* Mobile & Tablet Success State */
@media (max-width: 1023px) {
    .modal-success {
        padding: 0 20px 20px 20px;
    }
    
    .success-icon {
        margin: 16px 0 20px 0;
    }
    
    .success-icon svg {
        width: 56px;
        height: 56px;
    }
    
    .success-message {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

/* Terms Page Styles */
.terms-page {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 80px;
    background-color: #0C0C0E;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-content h1 {
    font-size: 3rem;
    font-weight: 500;
    color: white;
    margin-bottom: 32px;
    text-align: center;
}

.terms-section {
    margin-bottom: 32px;
}

.terms-section h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    margin-bottom: 16px;
}

.terms-section p {
    font-size: 16px;
    color: #AAAAAA;
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.last-updated {
    font-size: 14px;
    color: #666;
    text-align: center;
    font-style: italic;
}

.contact-info {
    background-color: #1a1a1a;
    border: 1px solid #2F2F2F;
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
}

.contact-info p {
    margin-bottom: 8px;
    color: #AAAAAA;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.terms-footer {
    margin-top: 48px;
    text-align: center;
}

/* Preloader Mobile & Tablet */
@media (max-width: 1023px) {
    .loading-label {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .bracket {
        font-size: 20px;
    }
    
    .preloader-subtitle {
        font-size: 11px;
    }
}

/* Terms Page Mobile & Tablet */
@media (max-width: 1023px) {
    .terms-page {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .terms-content h1 {
        font-size: 2rem;
        margin-bottom: 24px;
    }
    
    .terms-section {
        margin-bottom: 24px;
    }
    
    .terms-section h2 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .terms-section p {
        font-size: 15px;
    }
    
    .contact-info {
        padding: 16px;
    }
    
    .terms-footer {
        margin-top: 32px;
    }
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    border-bottom: 1px solid #2F2F2F;
}

.content-section:last-of-type {
    border-bottom: none;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #2F2F2F;
    border-radius: 9999px;
    margin-bottom: 24px;
}

.section-label span {
    color: #AAAAAA;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: white;
    line-height: 1.2;
    margin: 0;
}

/* Content with Media Layouts */
.content-with-media {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

/* About Section Layout */
.content-with-media .content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.content-block p {
    font-size: 18px;
    color: #AAAAAA;
    line-height: 1.6;
    margin: 0;
}

/* Public Section Layout */
.public-layout {
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.public-layout .section-component {
    flex: 0 0 450px;
}

.public-layout .content-single {
    flex: 1;
    text-align: left;
    padding-left: 32px;
}

/* Filmmakers Section Layout */
.filmmakers-layout {
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.filmmakers-layout .content-list {
    flex: 1;
    padding-right: 32px;
}

.filmmakers-layout .section-component {
    flex: 0 0 450px;
}

/* Investors Section Layout */
.investors-layout {
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.investors-layout .section-component {
    flex: 0 0 450px;
}

.investors-layout .content-single {
    flex: 1;
    margin: 0;
    padding-left: 32px;
}

/* Single Content (Public Section) */
.content-single {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.content-single p {
    font-size: 20px;
    color: #AAAAAA;
    line-height: 1.6;
    margin: 0;
}

/* Media Placeholder Styles */
.media-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    border: 1px solid #2F2F2F;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #1a1a1a;
}

.media-placeholder:hover {
    border-color: #4F4F4F;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Placeholder Image */
.placeholder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.media-placeholder:hover .placeholder-image {
    opacity: 1;
    transform: scale(1.02);
}

/* Placeholder Overlay */
.placeholder-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 24px;
    transition: all 0.3s ease;
}

.media-placeholder:hover .placeholder-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}

.placeholder-content {
    text-align: left;
    color: white;
}

.placeholder-content p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.media-placeholder:hover .placeholder-content p {
    transform: translateY(-2px);
    color: #f0f0f0;
}

/* Specific Media Placeholder Variants - Fallback backgrounds */
.about-media {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a2a 100%);
}

.public-media {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 50%, #2a2a1a 100%);
}

.filmmakers-media {
    background: linear-gradient(135deg, #1a1a1a 0%, #1a2a1a 50%, #2a1a1a 100%);
}

.investors-media {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a1a 50%, #1a2a2a 100%);
}

/* Image Error State - Show gradient background when image fails to load */
.placeholder-image:not([src]),
.placeholder-image[src=""] {
    display: none;
}

.media-placeholder:has(.placeholder-image:not([src])),
.media-placeholder:has(.placeholder-image[src=""]) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-placeholder:has(.placeholder-image:not([src])) .placeholder-overlay,
.media-placeholder:has(.placeholder-image[src=""]) .placeholder-overlay {
    position: static;
    background: transparent;
    text-align: center;
}

.media-placeholder:has(.placeholder-image:not([src])) .placeholder-content,
.media-placeholder:has(.placeholder-image[src=""]) .placeholder-content {
    color: #666;
    text-align: center;
}

/* Section Media Container */
.section-media {
    width: 100%;
    max-width: 400px;
}

/* Section Component Container */
.section-component {
    width: 100%;
    max-width: 450px;
}

/* Comments Component */
.comments-component {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #2F2F2F;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.comments-component:hover {
    border-color: #4F4F4F;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}


.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comment-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.comment-avatar {
    flex-shrink: 0;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.avatar-1 {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.avatar-2 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.avatar-3 {
    background: linear-gradient(135deg, #10b981, #059669);
}

.comment-content {
    flex: 1;
    min-width: 0;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.username {
    font-size: 13px;
    font-weight: 500;
    color: #AAAAAA;
}

.timestamp {
    font-size: 11px;
    color: #666;
}

.comment-text {
    font-size: 13px;
    color: #CCCCCC;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.comment-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 11px;
    cursor: pointer;
    padding: 2px 0;
    transition: color 0.2s ease;
}

.action-btn:hover {
    color: #AAAAAA;
}

/* Revenue Component */
.revenue-component {
    background: linear-gradient(135deg, #1a1a1a 0%, #1a2a1a 50%, #2a1a1a 100%);
    border: 1px solid #2F2F2F;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.revenue-component:hover {
    border-color: #4F4F4F;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}


.revenue-flow {
    margin-top: 0;
}

.revenue-source {
    margin-bottom: 20px;
}

.source-box {
    background: #2F2F2F;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    border: 1px solid #3F3F3F;
}

.source-label {
    display: block;
    font-size: 12px;
    color: #AAAAAA;
    margin-bottom: 4px;
}

.source-amount {
    font-size: 18px;
    font-weight: 500;
    color: white;
}

.revenue-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 16px 0;
    gap: 4px;
}

.arrow-line {
    width: 2px;
    height: 8px;
    background: linear-gradient(to bottom, #10b981, #059669);
    opacity: 0.7;
}

.arrow-line:last-child {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #10b981;
    background: none;
}

.revenue-recipients {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recipient-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(47, 47, 47, 0.3);
    padding: 12px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.recipient-item:hover {
    background: rgba(47, 47, 47, 0.5);
}

.recipient-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.director {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.producer {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.team {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.investors {
    background: linear-gradient(135deg, #10b981, #059669);
}

.recipient-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.role {
    font-size: 13px;
    color: #CCCCCC;
    font-weight: 500;
}

.percentage {
    font-size: 12px;
    color: #AAAAAA;
}

.amount {
    font-size: 14px;
    color: #10b981;
    font-weight: 500;
}

/* Payment Component */
.payment-component {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a1a 50%, #1a2a2a 100%);
    border: 1px solid #2F2F2F;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.payment-component:hover {
    border-color: #4F4F4F;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}


.investment-amount {
    margin: 0 0 20px 0;
}

.amount-label {
    display: block;
    font-size: 13px;
    color: #CCCCCC;
    margin-bottom: 8px;
    font-weight: 500;
}

.amount-input-wrapper {
    display: flex;
    align-items: center;
    background: #2F2F2F;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #3F3F3F;
    transition: border-color 0.2s ease;
}

.amount-input-wrapper:focus-within {
    border-color: #4F4F4F;
}

.currency-symbol {
    color: #AAAAAA;
    font-weight: 500;
    margin-right: 8px;
}

.amount-input {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    width: 80px;
    outline: none;
}


.payment-methods {
    margin: 24px 0;
}

.payment-title {
    font-size: 13px;
    color: #CCCCCC;
    margin-bottom: 12px;
    font-weight: 500;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #2F2F2F;
    border: 1px solid #3F3F3F;
    border-radius: 8px;
    padding: 12px;
    color: #CCCCCC;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 500;
}

.payment-option:hover {
    border-color: #4F4F4F;
    background: #3F3F3F;
}

.payment-option.active {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.payment-icon {
    width: 20px;
    height: 20px;
    color: inherit;
}


.invest-button {
    width: 100%;
    background: white;
    color: black;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 20px;
}

.invest-button:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
}

/* Content List (Filmmakers Section) */
.content-list {
    max-width: 700px;
    margin: 0 auto;
}

.list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-left: 32px;
    position: relative;
}

.list-item:last-child {
    margin-bottom: 0;
}

.list-item::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    color: white;
    font-weight: 500;
    font-size: 18px;
}

.list-item p {
    font-size: 18px;
    color: #AAAAAA;
    line-height: 1.6;
    margin: 0;
}


/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-top: 1px solid #2F2F2F;
    border-bottom: 1px solid #2F2F2F;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 20px;
    color: #AAAAAA;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* Footer */
.footer {
    background-color: #0C0C0E;
    padding: 60px 0 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 48px;
}

.footer-left {
    flex: 1;
    max-width: 400px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link {
    color: #AAAAAA;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

.footer-attribution {
    display: flex;
    align-items: center;
}

.attribution-link {
    color: #666;
    font-size: 12px;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.attribution-link:hover {
    color: #AAAAAA;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2F2F2F;
}

.footer-bottom p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Responsive Design for Content Sections */
@media (min-width: 1024px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Mobile & Tablet Responsive for Content Sections */
@media (max-width: 1023px) {
    .content-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Content with Media - Stack on Mobile */
    .content-with-media {
        flex-direction: column;
        gap: 32px;
    }
    
    .public-layout,
    .filmmakers-layout,
    .investors-layout {
        flex-direction: column;
        gap: 32px;
    }
    
    .public-layout .section-media,
    .filmmakers-layout .section-media,
    .investors-layout .section-media,
    .public-layout .section-component,
    .filmmakers-layout .section-component,
    .investors-layout .section-component {
        flex: none;
        max-width: 100%;
    }
    
    .public-layout .content-single,
    .filmmakers-layout .content-list,
    .investors-layout .content-single {
        padding: 0;
    }
    
    .public-layout .content-single {
        text-align: center;
    }
    
    /* Content Grid - Stack on Mobile */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .content-block p {
        font-size: 16px;
    }
    
    /* Media Placeholder Mobile */
    .placeholder-overlay {
        padding: 16px;
    }
    
    .placeholder-content p {
        font-size: 13px;
    }
    
    /* Component Mobile Styles */
    .comments-component,
    .revenue-component,
    .payment-component {
        padding: 20px;
    }
    
    .comments-component:hover,
    .revenue-component:hover,
    .payment-component:hover {
        transform: none;
        box-shadow: none;
    }
    
    
    .revenue-recipients {
        gap: 8px;
    }
    
    .recipient-item {
        padding: 8px;
    }
    
    .recipient-info {
        justify-content: space-between;
        align-items: center;
    }
    
    .role {
        font-size: 12px;
    }
    
    .percentage {
        font-size: 11px;
    }
    
    .amount {
        font-size: 13px;
    }
    
    .payment-options {
        gap: 6px;
    }
    
    .payment-option {
        padding: 10px;
    }
    
    .media-placeholder:hover {
        transform: none;
        box-shadow: none;
    }
    
    .media-placeholder:hover .placeholder-image {
        transform: none;
    }
    
    .media-placeholder:hover .placeholder-content p {
        transform: none;
    }
    
    /* Single Content */
    .content-single p {
        font-size: 18px;
    }
    
    /* Content List */
    .list-item {
        margin-bottom: 20px;
        padding-left: 28px;
    }
    
    .list-item p {
        font-size: 16px;
    }
    
    
    /* CTA Section */
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 32px;
    }
    
    .footer-right {
        align-items: flex-start;
        width: 100%;
    }
    
    .footer-links {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .footer-bottom {
        padding-top: 20px;
    }
}
