:root {
    --prussian-blue: #191D32;  /* Dein Haupt-Hintergrund */
    --space-indigo: #282F44;   /* Für Karten oder Absetzungen */
    --deep-crimson: #931621;   /* Für Akzente oder Hover-Effekte */
    --honey-bronze: #ECA72C;   /* Für Buttons und wichtige Titel */
    --soft-fawn: #D8BD8A;      /* Für normalen Text und Untertitel */
    --white: #FFFFFF;

    --font-header: 'Syncopate', sans-serif;
    --font-white: 'Montserrat', sans-serif;
}

body {
    background-color: var(--prussian-blue);
    color: var(--soft-fawn);
    font-family: var(--font-white);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.hero {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    margin: 20px 0;
    background-color: #282F44;
    border: 1px solid #931621;
    border-radius: 12px;
}

.hero-img {
    flex: 1;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    flex: 1;
}

.movie-title {
    color: var(--honey-bronze);
    font-size: 3rem;
}

.movie-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.movie-card {
    background-color: var(--space-indigo);
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.movie-card:hover {
    transform: translateY(-10px);
    border: 1px solid var(--deep-crimson);
}

.card-img {
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    margin-bottom: 15px;
}

.poster-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-ticket,
.btn-cta {
    background-color: var(--honey-bronze);
    color: var(--prussian-blue);
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.btn-cta {
    width: auto;
    font-size: 1.1rem;
}

.btn-ticket:hover,
.btn-cta:hover {
    background-color: var(--deep-crimson);
    color: var(--white);
}

.favorites-area {
    background-color: #282F44;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    border: 1px solid rgba(234, 167, 44, 0.2);
}

.favorites-area h3 {
    color: #ECA72C;
    margin-bottom: 20px;
    font-family: 'Syncopate', sans-serif;
}

.favorites-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.favorites-list li {
    padding: 10px 0;
    border-bottom: 1px solid #191D32;
    color: #D8BD8A;
    transition: padding-left 0.3s;
}

.favorites-list li:hover {
    color: #ECA72C;
    padding-left: 10px;
    cursor: pointer;
}

.btn-favorites {
    background-color: transparent;
    color: #ECA72C;
    border: 2px solid #ECA72C;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-favorites:hover {
    background-color: #ECA72C;
    color: #191D32;
}

/* --- PROGRAMM SEITE STYLES --- */

.program-page {
    background-color: #1a1f2c;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    color: #e2b04a;
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #e2b04a;
    padding-bottom: 10px;
}

.movie-entry {
    display: flex;
    background-color: #242a3d;
    border-radius: 12