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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    line-height: 1.6;
    color: #f5f5f5;
    background: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    background: #000;
    color: white;
    padding: 80px 40px 60px;
    text-align: center;
    border-bottom: 3px solid #8c0909;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.film-title {
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Bebas Neue', 'Arial Black', 'Arial Bold', sans-serif !important;
    line-height: 1;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 30px;
    color: #d1d1d1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
}

.production-credit {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.in-association {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
}

.redcrows-logo {
    max-width: 160px;
    height: auto;
    display: block;
    filter: brightness(1.1);
}

.redcrows-text {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-top: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
}

.status-banner {
    background: #8c0909;
    color: white;
    padding: 25px 40px;
    text-align: center;
}

.status-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.status-badge {
    display: inline-block;
    background: #000;
    color: #8c0909;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 2px solid #8c0909;
}

.premiere-text {
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
}

.premiere-text strong {
    color: #ffd700;
    font-weight: 700;
}

main {
    flex: 1;
    padding: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.main-content {
    width: 100%;
}

.content-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.synopsis,
.newsletter,
.social {
    background: #111;
    padding: 45px;
    width: 100%;
    border-left: 4px solid #8c0909;
    border-radius: 8px;
}

.content-wrapper h2,
.newsletter-wrapper h2,
.social-wrapper h2 {
    font-size: 1.75rem;
    color: #8c0909;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
}

.content-wrapper p {
    font-size: 1.05rem;
    color: #e5e5e5;
    line-height: 1.8;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
}

.newsletter-wrapper {
    text-align: center;
}

.newsletter-wrapper > p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 24px;
    line-height: 1.7;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
}

.newsletter-wrapper strong {
    color: #ffd700;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
    align-items: stretch;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid #333;
    border-radius: 6px;
    background: #0a0a0a;
    color: #fff;
    transition: all 0.3s;
    font-family: inherit;
}

.email-input:focus {
    outline: none;
    border-color: #8c0909;
    box-shadow: 0 0 0 3px rgba(140, 9, 9, 0.1);
}

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

.consent-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
}

.consent-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #8c0909;
    flex-shrink: 0;
}

.consent-checkbox span {
    user-select: none;
}

.submit-btn {
    padding: 14px 32px;
    font-size: 1rem;
    background: #8c0909;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
}

.submit-btn:hover:not(:disabled) {
    background: #6d0707;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(140, 9, 9, 0.3);
}

.submit-btn:disabled {
    background: #444;
    color: #888;
    cursor: not-allowed;
    opacity: 0.6;
}

.submit-btn:active {
    transform: translateY(0);
}

.newsletter-message {
    margin-top: 16px;
    font-size: 0.9rem;
    min-height: 20px;
}

.newsletter-message.success {
    color: #4ade80;
}

.newsletter-message.error {
    color: #8c0909;
}

.social-wrapper {
    text-align: center;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 14px 28px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 8px;
    transition: all 0.3s;
    margin-bottom: 24px;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(140, 9, 9, 0.4);
}

.instagram-icon {
    width: 24px;
    height: 24px;
    color: white;
}

.dream-big {
    font-size: 1.2rem;
    color: #ffd700;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
}

.site-footer {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.5);
    padding: 30px 20px;
    text-align: center;
    font-size: 0.85rem;
    margin-top: auto;
    border-top: 1px solid #222;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
}

@media (max-width: 768px) {
    .film-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .site-header {
        padding: 60px 20px 50px;
    }
    
    main {
        padding: 40px 20px;
    }
    
    .synopsis,
    .newsletter,
    .social {
        padding: 30px 24px;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .content-wrapper h2,
    .newsletter-wrapper h2,
    .social-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .status-banner {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .film-title {
        font-size: 2.5rem;
    }
    
    .site-header {
        padding: 50px 20px 40px;
    }
    
    .redcrows-logo {
        max-width: 120px;
    }
}
