.program-container {
    max-width: 100%;
    display: flex;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    flex-direction: column;
    align-items: flex-start;
}

.program-main-header {
    text-align: left;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 3px solid #e0e0e0;
}

.program-main-header h1 {
    font-size: 36px;
    color: #2c3e50;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
}

.program-date {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.program-date:last-child {
    margin-bottom: 0;
}

.program-date {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column; 
}

.program-movies {
    display: flex;
    flex-direction: column; 
    gap: 25px;
    width: 100%;
    max-width: 800px; 
    margin: 0 auto; 
}

.movie-card {
    width: 100%; 
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-date h2 {
    font-size: 28px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    color: #333;
}


.movie-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.movie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.movie-time {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

.movie-duration {
    color: #666;
    font-size: 0.9em;
}

.movie-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.movie-title {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
}

.original-title {
    color: #666;
    font-style: italic;
}

.label {
    font-weight: 600;
    color: #444;
    margin-right: 6px;
}

.movie-description {
    color: #666;
    line-height: 1.6;
    margin: 15px 0;
}

.more-info-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    text-align: center;
}

.more-info-button:hover {
    background-color: #34495e;
    color: white;
}

.program-no-events {
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid #eee;
    font-size: 18px;
    color: #666;
}

.coming-soon-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px dashed #dee2e6;
    text-align: center;
}

.coming-soon-card .movie-description {
    color: #495057;
    font-size: 18px;
    font-style: italic;
    padding: 30px 15px;
}


@keyframes gentle-pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

.coming-soon-card .movie-description {
    animation: gentle-pulse 2.5s infinite ease-in-out;
}

.program-no-events:before {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23adb5bd" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
}

.movie-title,
.program-date,
.program-movies,
.movie-card,
.movie-description {
    opacity: 1 !important; 
    visibility: visible !important;
    display: block !important;
}


.movie-card {
    transform: none !important;
}


.js-initialized .program-date,
.js-initialized .program-movies,
.js-initialized .movie-card {
    opacity: 1;
    visibility: visible;
    display: block;
    transform: none;
}

@media (max-width: 768px) {
    .program-movies {
        grid-template-columns: 1fr;
    }
    
    .movie-card {
        padding: 20px;
    }
    
    .movie-title {
        font-size: 20px;
    }
}