* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #000000;
    color: #d4c5a0;
    overflow-x: hidden;
}

/* Subtle cryo-chamber pulse effect */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center, #0d1a1e 0%, #000000 70%);
}

/* Subtle teal glow from cryo-pod */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(143, 181, 196, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 6s infinite;
}

.poster-container {
    max-width: 600px;
    width: 100%;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeIn 1.5s ease-in;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.9));
}

.poster-container img {
    width: 100%;
    height: auto;
    border: 1px solid #1e3a42;
}

h1 {
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 0.8rem;
    margin-top: 6rem;
    color: #d4c5a0;
    text-shadow: 0 0 30px rgba(212, 197, 160, 0.3);
    animation: fadeIn 2s ease-in;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
}

.subtitle {
    font-size: 0.9rem;
    color: #7a9aa8;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    margin-bottom: 3rem;
    animation: fadeIn 2.5s ease-in;
}

/* Info bars */
.info-bars {
    display: flex;
    gap: 3rem;
    margin: 2rem auto;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeIn 3s ease-in;
}

.info-item {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(143, 181, 196, 0.03);
    border-left: 2px solid #2a4a52;
}

.info-item .label {
    font-size: 0.7rem;
    color: #6a8a95;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    margin-bottom: 0.5rem;
}

.info-item .value {
    font-size: 1rem;
    color: #b8a880;
    font-weight: 300;
}

/* Synopsis Section */
.synopsis {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    background: #000000;
}

.synopsis h2 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: #8fb5c4;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-weight: 300;
    border-bottom: 1px solid #1e3a42;
    padding-bottom: 1rem;
}

.synopsis .logline {
    font-size: 1.3rem;
    line-height: 2;
    color: #d4c5a0;
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 3px solid #2a4a52;
    font-style: italic;
    font-weight: 300;
}

.synopsis p {
    font-size: 1rem;
    line-height: 1.9;
    color: #b8a880;
    margin-bottom: 1.5rem;
}

/* Credits Section */
.credits {
    padding: 5rem 2rem;
    background: #050808;
    text-align: center;
}

.credits h2 {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #7a9aa8;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    font-weight: 300;
}

.credit-grid {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.credit-item {
    padding: 2rem;
    background: rgba(143, 181, 196, 0.02);
    border-top: 2px solid #2a4a52;
}

.credit-item .role {
    font-size: 0.75rem;
    color: #6a8a95;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    margin-bottom: 1rem;
}

.credit-item .name {
    font-size: 1.1rem;
    color: #b8a880;
    font-weight: 300;
    line-height: 1.6;
}

/* Related Projects */
.related {
    padding: 4rem 2rem;
    text-align: center;
    background: #000000;
}

.related h2 {
    font-size: 1rem;
    color: #7a9aa8;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-weight: 300;
}

.related a {
    display: inline-block;
    padding: 1.2rem 3rem;
    border: 1px solid #2a4a52;
    color: #7a9aa8;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    background: rgba(143, 181, 196, 0.02);
}

.related a:hover {
    border-color: #8fb5c4;
    color: #d4c5a0;
    background: rgba(143, 181, 196, 0.05);
    box-shadow: 0 0 20px rgba(143, 181, 196, 0.1);
}

.film-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: #050808;
    text-align: center;
    border-top: 1px solid #0f1516;
}

.contact h2 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #7a9aa8;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    font-weight: 300;
}

.contact p {
    color: #6a8a95;
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
}

.contact-link {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    border: 1px solid #8fb5c4;
    color: #8fb5c4;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: transparent;
}

.contact-link:hover {
    background: rgba(143, 181, 196, 0.1);
    box-shadow: 0 0 30px rgba(143, 181, 196, 0.2);
    border-color: #a8cbd6;
}

/* Footer */
footer {
    padding: 2.5rem;
    text-align: center;
    color: #2a4a52;
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    background: #000000;
}

footer a {
    color: #7a9aa8;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #d4c5a0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
        letter-spacing: 0.4rem;
    }

    .info-bars {
        flex-direction: column;
        gap: 1rem;
    }

    .poster-container {
        max-width: 340px;
    }
}