.movie-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.movie-card:hover {
    transform: translateY(-5px);
}

.movie-poster {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
}

.movie-info {
    padding: 15px;
}

.movie-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.movie-rating {
    font-size: 14px;
    color: #666;
}

.movie-language {
    font-size: 14px;
    color: #666;
}

.book-ticket-btn {
    width: 100%;
    padding: 12px;
    background: #2B4C8C;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.book-ticket-btn:hover {
    background: #1e3a6d;
}